Show
Ignore:
Timestamp:
11/22/05 13:29:41 (7 years ago)
Author:
strk
Message:

Fixed a bug in getPoint{3dm,3dz,4d}_p() api calls automatically
fixing bugs in force_{3dm,3dz,4d}() user functions, for which
tests have been added in regress dir.
Wrapped paranoid checks in PARANOIA_LEVEL preprocessor blocks.
Updated release notes and CHANGES file.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/regress/regress.sql

    r2026 r2053  
    239239select '143', asewkt(multi(setsrid('POLYGON((0 0, 1 0, 1 1, 0 1, 0 0))'::geometry, 6))); 
    240240 
     241select '144', asewkt(force_3dm('POINT(1 2 3)')); 
     242select '145', asewkt(force_3dz('POINTM(1 2 3)')); 
     243select '146', asewkt(force_4d('POINTM(1 2 3)')); 
     244select '147', asewkt(force_4d('POINT(1 2 3)')); 
     245 
    241246select '144', asewkt(linemerge('GEOMETRYCOLLECTION(LINESTRING(0 0, 1 1), LINESTRING(4 4, 1 1), LINESTRING(-5 -5, 0 0))'::geometry));