Fix a couple of missed changes in expected results.
authorTom Lane
Wed, 15 Mar 2000 06:24:58 +0000 (06:24 +0000)
committerTom Lane
Wed, 15 Mar 2000 06:24:58 +0000 (06:24 +0000)
src/test/regress/expected/geometry-positive-zeros.out
src/test/regress/expected/int4-too-large.out

index c4ccbd658fa8ab752637f72b8de0912643136b3d..113733d9420ebbf76bd12118166a33ae9c127545 100644 (file)
@@ -280,7 +280,7 @@ SELECT '' AS twenty, b.f1 / p.f1 AS rotation
 -- Paths
 --
 SET geqo TO 'off';
-SELECT '' AS eight, points(f1) AS npoints, f1 AS path FROM PATH_TBL;
+SELECT '' AS eight, npoints(f1) AS npoints, f1 AS path FROM PATH_TBL;
  eight | npoints |           path            
 -------+---------+---------------------------
        |       2 | [(1,2),(3,4)]
@@ -397,7 +397,7 @@ SELECT '' AS twentyfour, p.f1, poly.f1, p.f1 @ poly.f1 AS contained
             | (10,10)    | ((0,1),(0,1))       | f
 (24 rows)
 
-SELECT '' AS four, points(f1) AS npoints, f1 AS polygon
+SELECT '' AS four, npoints(f1) AS npoints, f1 AS polygon
    FROM POLYGON_TBL;
  four | npoints |       polygon       
 ------+---------+---------------------
index c558f91939a9fa456ba387b346d5a722c787bc0f..6b2b7cfdd696a5cc95a15f2a36b0361004a52f79 100644 (file)
@@ -295,21 +295,3 @@ SELECT (2 + 2) / 2 AS two;
    2
 (1 row)
 
-SELECT dsqrt(float8 '64') AS eight;
- eight 
--------
-     8
-(1 row)
-
-SELECT |/float8 '64' AS eight;
- eight 
--------
-     8
-(1 row)
-
-SELECT ||/float8 '27' AS three;
- three 
--------
-     3
-(1 row)
-