]> granicus.if.org Git - postgis/commitdiff
extent() -> st_extent()
authorSandro Santilli <strk@keybit.net>
Tue, 3 May 2011 13:32:55 +0000 (13:32 +0000)
committerSandro Santilli <strk@keybit.net>
Tue, 3 May 2011 13:32:55 +0000 (13:32 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@7082 b70326c6-7e19-0410-871a-916f4a2858ee

12 files changed:
raster/test/regress/rt_above.sql
raster/test/regress/rt_below.sql
raster/test/regress/rt_contain.sql
raster/test/regress/rt_contained.sql
raster/test/regress/rt_left.sql
raster/test/regress/rt_overabove.sql
raster/test/regress/rt_overbelow.sql
raster/test/regress/rt_overlap.sql
raster/test/regress/rt_overleft.sql
raster/test/regress/rt_overright.sql
raster/test/regress/rt_right.sql
raster/test/regress/rt_same.sql

index 26d822f2a2ec9c486f348634e5974f51b2e5a812..d83704a56c6b15854c59dee0a9bc310f19ff0249 100644 (file)
@@ -16,7 +16,7 @@ SELECT 'st_above(X, query(1,1))' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND st_above(a.tile, b.tile);
@@ -31,7 +31,7 @@ SELECT 'X |>> query(1,1)' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND a.tile |>> b.tile;
index 72035e77fa78c6b76220de5767d1d8b5178c1182..4c7844b5f3de8534a9de715f56bbb5adfecec0cc 100644 (file)
@@ -17,7 +17,7 @@ SELECT 'st_below(X, query(1,1))' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND st_below(a.tile, b.tile);
@@ -32,7 +32,7 @@ SELECT 'X <<| query(1,1)' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND a.tile <<| b.tile;
index 6d020440c11a11e6d219897fbfb511c0c5c5da2f..9171568905bc8c7bc251c5a27165e915da2f90a3 100644 (file)
@@ -17,7 +17,7 @@ SELECT 'st_contain(query(1,1), X)' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND st_contain(b.tile, a.tile);
@@ -32,7 +32,7 @@ SELECT 'query(1,1) ~ X' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND b.tile ~ a.tile;
index 91f1089748b5136e3d315a05f4e3604e524378a7..88351b23685fc512c7e806e0b58f4ebccd233e65 100644 (file)
@@ -17,7 +17,7 @@ SELECT 'st_contained(X, query(1,1))' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND st_contained(a.tile, b.tile);
@@ -32,7 +32,7 @@ SELECT 'X @ query(1,1)' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND a.tile @ b.tile;
index 589669fbdb0338415012662bc7e439203a29f04a..27732db2ad3163acfa5418897894d593428ff72d 100644 (file)
@@ -17,7 +17,7 @@ SELECT 'st_left(X, query(1,1))' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND st_left(a.tile, b.tile);
@@ -32,7 +32,7 @@ SELECT 'X << query(1,1)' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND a.tile << b.tile;
index 24042d969045dee9e9d06bf36e23f78e040a3de0..79908386b63dc245fe1cca47c8a924fca43c9538 100644 (file)
@@ -17,7 +17,7 @@ SELECT 'st_overabove(X, query(1,1))' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND st_overabove(a.tile, b.tile);
@@ -32,7 +32,7 @@ SELECT 'X |&> query(1,1)' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND a.tile |&> b.tile;
index b8c665eab88fb84682e0b153799adeacfd0a6ca2..f6a2e0d8af257c164981312b440f2e99c73d84fc 100644 (file)
@@ -17,7 +17,7 @@ SELECT 'st_overbelow(X, query(1,1))' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND st_overbelow(a.tile, b.tile);
@@ -32,7 +32,7 @@ SELECT 'X &<| query(1,1)' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND a.tile &<| b.tile;
index 010acbfc99c8775c8eadef2cad3a93c9158b321f..236c5323f8455c9f1c1f30f3ad9af8e9c8e43842 100644 (file)
@@ -17,7 +17,7 @@ SELECT 'st_overlap(X, query(1,1))' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND st_overlap(a.tile, b.tile);
@@ -32,7 +32,7 @@ SELECT 'X && query(1,1)' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND a.tile && b.tile;
index c32e8ccd1bdb404c6c0ac7699640064727dc6ad6..047e461d95836a16614072aaf7e665cd2384be6c 100644 (file)
@@ -17,7 +17,7 @@ SELECT 'st_overleft(X, query(1,1))' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND st_overleft(a.tile, b.tile);
@@ -32,7 +32,7 @@ SELECT 'X &< query(1,1)' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND a.tile &< b.tile;
index ea91ac11144ae1386a36944393fde4e2bd92ecb0..dc7d74044214303aeb975b311b446c9d8d56b0de 100644 (file)
@@ -16,7 +16,7 @@ SELECT 'st_overright(X, query(1,1))' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND st_overright(a.tile, b.tile);
@@ -31,7 +31,7 @@ SELECT 'X &> query(1,1)' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND a.tile &> b.tile;
index 3c8dfa8dbcb2a81d271c3f92ffc77bd2f5cdaed4..4bc7fa9fd16ebe355ec8909f8a31ec23c3834ca9 100644 (file)
@@ -17,7 +17,7 @@ SELECT 'st_right(X, query(1,1))' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND st_right(a.tile, b.tile);
@@ -32,7 +32,7 @@ SELECT 'X >> query(1,1)' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND a.tile >> b.tile;
index 76e3f7cd633f431baf07cdce0ffb1166c51aa1f1..13372ff69e7dee4f985c88898aa2b79226dcc47e 100644 (file)
@@ -17,7 +17,7 @@ SELECT 'st_same(X, query(1,1))' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND st_same(a.tile, b.tile);
@@ -28,7 +28,7 @@ SELECT 'st_same(X, query(7,7))' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_grid_test b
 WHERE b.x = 7 and b.y = 7
     AND st_same(a.tile, b.tile);
@@ -43,7 +43,7 @@ SELECT 'X ~= query(1,1)' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_query_test b
 WHERE b.x = 1 and b.y = 1
     AND a.tile ~= b.tile;
@@ -54,7 +54,7 @@ SELECT 'X ~= tile(7,7)' as op,
         max(a.x) as xmax,
         min(a.y) as ymin,
         max(a.y) as ymax,
-        extent(a.tile)
+        st_extent(a.tile)
 FROM rt_gist_grid_test a, rt_gist_grid_test b
 WHERE b.x = 7 and b.y = 7
     AND a.tile ~= b.tile;