Show
Ignore:
Timestamp:
12/14/05 17:07:28 (6 years ago)
Author:
strk
Message:

Removed call to replace(text,text,text) in regress.sql
(unsupported by pgsql 7.2)
Used sed in run_test to Transform Infinite to inf and Inf to inf

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/regress/regress.sql

    r2179 r2194  
    8686select '60',asewkt('POINT(1 2 3 4 5 6 7)'::GEOMETRY); 
    8787select '61',asewkt('LINESTRING(1 1)'::GEOMETRY); 
    88 select '62',replace(asewkt('POINT( 1e700 0)'::GEOMETRY), 'Infinity', 'inf'); 
    89 select '63',replace(asewkt('POINT( -1e700 0)'::GEOMETRY), 'Infinity', 'inf'); 
     88--select '62',replace(asewkt('POINT( 1e700 0)'::GEOMETRY), 'Infinity', 'inf'); 
     89--select '63',replace(asewkt('POINT( -1e700 0)'::GEOMETRY), 'Infinity', 'inf'); 
     90select '62',asewkt('POINT( 1e700 0)'::GEOMETRY); 
     91select '63',asewkt('POINT( -1e700 0)'::GEOMETRY); 
    9092select '64',asewkt('MULTIPOINT(1 1, 2 2'::GEOMETRY); 
    9193