File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed
Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,27 @@ SELECT ROW_NUMBER() OVER () AS id,
2828 FROM generate_series(0 , 9 ) AS x(x)
2929 CROSS JOIN generate_series(0 , 9 ) AS y(y);
3030
31+ -- =====================================================================
32+
33+ CREATE TABLE pgfs_test .test_srid0
34+ (
35+ id integer primary key ,
36+ geom geometry(polygon , 0 ),
37+ name text
38+ );
39+
40+ -- DROP TABLE pgfs_test.test_srid0;
41+ -- DELETE FROM pgfs_test.test_srid0;
42+
43+ INSERT INTO pgfs_test .test_srid0
44+ SELECT ROW_NUMBER() OVER () AS id,
45+ ST_MakeEnvelope(1 .0 + 2 * x, 4 .0 + 2 * y,
46+ 1 .0 + 2 * (x + 1 ), 4 .0 + 2 * (y + 1 ),
47+ 0 ) AS geom,
48+ x || ' _' || y AS name
49+ FROM generate_series(0 , 9 ) AS x(x)
50+ CROSS JOIN generate_series(0 , 9 ) AS y(y);
51+
3152
3253-- =====================================================================
3354
You can’t perform that action at this time.
0 commit comments