aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2000-03-15 06:24:58 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2000-03-15 06:24:58 +0000
commitc397e264db72b0916bae0f319e3505cba8dd81f5 (patch)
tree035212cf159495118389ad478102322b70345418
parentce3b489b979a39dd45fd5f248b9bad47a56dbc66 (diff)
downloadpostgresql-c397e264db72b0916bae0f319e3505cba8dd81f5.tar.gz
postgresql-c397e264db72b0916bae0f319e3505cba8dd81f5.zip
Fix a couple of missed changes in expected results.
-rw-r--r--src/test/regress/expected/geometry-positive-zeros.out4
-rw-r--r--src/test/regress/expected/int4-too-large.out18
2 files changed, 2 insertions, 20 deletions
diff --git a/src/test/regress/expected/geometry-positive-zeros.out b/src/test/regress/expected/geometry-positive-zeros.out
index c4ccbd658fa..113733d9420 100644
--- a/src/test/regress/expected/geometry-positive-zeros.out
+++ b/src/test/regress/expected/geometry-positive-zeros.out
@@ -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
------+---------+---------------------
diff --git a/src/test/regress/expected/int4-too-large.out b/src/test/regress/expected/int4-too-large.out
index c558f91939a..6b2b7cfdd69 100644
--- a/src/test/regress/expected/int4-too-large.out
+++ b/src/test/regress/expected/int4-too-large.out
@@ -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)
-