add indices for visual tables

This commit is contained in:
Motiejus Jakštys 2021-02-28 15:30:42 +02:00
parent 5115599fab
commit 35dc0fa584

View File

@ -22,8 +22,8 @@ insert into figures (name, way) values ('inflection-1',ST_GeomFromText('LINESTRI
drop table if exists abends, bends; drop table if exists abends, bends;
create table abends (name text, ways geometry[]); create table abends (name text, ways geometry[]);
insert into abends select f.name, detect_bends(f.way) from figures f; insert into abends select f.name, detect_bends(f.way) from figures f;
create table bends (name text, way geometry); create table bends (name text, i bigint, way geometry);
insert into bends select a.name, unnest(a.ways) from abends a; insert into bends select a.name, generate_subscripts(a.ways, 1), unnest(a.ways) from abends a;
do $$ do $$
declare declare
@ -44,8 +44,8 @@ end $$ language plpgsql;
drop table if exists ainflections, inflections; drop table if exists ainflections, inflections;
create table ainflections (name text, ways geometry[]); create table ainflections (name text, ways geometry[]);
insert into ainflections select a.name, fix_gentle_inflections(a.ways) from abends a; insert into ainflections select a.name, fix_gentle_inflections(a.ways) from abends a;
create table inflections (name text, way geometry); create table inflections (name text, i bigint, way geometry);
insert into inflections select a.name, unnest(a.ways) from ainflections a; insert into inflections select a.name, generate_subscripts(a.ways, 1), unnest(a.ways) from ainflections a;
do $$ do $$
declare declare