mirror of
https://github.com/maplibre/martin.git
synced 2024-12-19 12:51:37 +03:00
3c01125fc5
* feat: add composite sources support WIP * feat: handle empty composite sources * fix: decompose queries * docs: add docs on composite sources * ci: push docker image * test: add composite source tests
17 lines
469 B
SQL
17 lines
469 B
SQL
CREATE TABLE points2(gid SERIAL PRIMARY KEY, geom GEOMETRY(POINT, 4326));
|
|
|
|
INSERT INTO points2
|
|
SELECT
|
|
generate_series(1, 10000) as id,
|
|
(
|
|
ST_DUMP(
|
|
ST_GENERATEPOINTS(
|
|
ST_GEOMFROMTEXT('POLYGON ((-180 90, 180 90, 180 -90, -180 -90, -180 90))', 4326),
|
|
10000
|
|
)
|
|
)
|
|
).geom;
|
|
|
|
CREATE INDEX ON points2 USING GIST(geom);
|
|
CLUSTER points2_geom_idx ON points2;
|