Show
Ignore:
Timestamp:
06/04/07 16:06:28 (5 years ago)
Author:
mleslie
Message:

Added versions of functions with standard ST (Spatial Type) prefixes to any functions that were lacking them. Updated the regression tests to include the new functions.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/regress/ctors.sql

    r2462 r2616  
    1313select makebox3d('SRID=3;POINT(0 0)', 'SRID=3;POINT(1 1)'); 
    1414select makebox3d('POINT(0 0)', 'SRID=3;POINT(1 1)'); 
     15 
     16-- Repeat all tests with the new function names. 
     17-- postgis-users/2006-July/012764.html 
     18SELECT ST_SRID(collect('SRID=32749;POINT(0 0)', 'SRID=32749;POINT(1 1)')); 
     19 
     20SELECT ST_collect('SRID=32749;POINT(0 0)', 'SRID=32740;POINT(1 1)'); 
     21 
     22select ST_asewkt(makeline('SRID=3;POINT(0 0)', 'SRID=3;POINT(1 1)')); 
     23select ST_makeline('POINT(0 0)', 'SRID=3;POINT(1 1)'); 
     24 
     25-- postgis-users/2006-July/012788.html 
     26select ST_makebox2d('SRID=3;POINT(0 0)', 'SRID=3;POINT(1 1)'); 
     27select ST_makebox2d('POINT(0 0)', 'SRID=3;POINT(1 1)'); 
     28 
     29select ST_makebox3d('SRID=3;POINT(0 0)', 'SRID=3;POINT(1 1)'); 
     30select ST_makebox3d('POINT(0 0)', 'SRID=3;POINT(1 1)');