martin/tests/fixtures/tables/points_empty.sql
2024-03-16 22:45:43 -04:00

10 lines
216 B
SQL

-- This table is intentionally left empty
CREATE TABLE points_empty
(
gid SERIAL PRIMARY KEY,
geom GEOMETRY
);
CREATE INDEX ON points_empty USING GIST (geom);
CLUSTER points_empty_geom_idx ON points_empty;