stud/IV/tests-integration.sql
Motiejus Jakštys d77c275474 demo with island
2021-03-24 16:53:56 +02:00

6 lines
215 B
PL/PgSQL

\i wm.sql
drop table if exists agg_rivers_wm;
create table agg_rivers_wm (name text, way geometry);
insert into agg_rivers_wm (name, way) select name, ST_SimplifyWM_DEBUG(way) from agg_rivers where name='Nemunas';