mirror of
https://github.com/maplibre/martin.git
synced 2024-12-23 06:42:49 +03:00
c1b65796f6
* All tests and internal code now uses ST_TileEnvelope function * Remove `tile_bbox` * Rename test function sources for clarity - this will be needed in a subsequent PR to add other function 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;
|