Skip to content

Commit c397e26

Browse files
committed
Fix a couple of missed changes in expected results.
1 parent ce3b489 commit c397e26

File tree

2 files changed

+2
-20
lines changed

2 files changed

+2
-20
lines changed

src/test/regress/expected/geometry-positive-zeros.out

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ SELECT '' AS twenty, b.f1 / p.f1 AS rotation
280280
-- Paths
281281
--
282282
SET geqo TO 'off';
283-
SELECT '' AS eight, points(f1) AS npoints, f1 AS path FROM PATH_TBL;
283+
SELECT '' AS eight, npoints(f1) AS npoints, f1 AS path FROM PATH_TBL;
284284
eight | npoints | path
285285
-------+---------+---------------------------
286286
| 2 | [(1,2),(3,4)]
@@ -397,7 +397,7 @@ SELECT '' AS twentyfour, p.f1, poly.f1, p.f1 @ poly.f1 AS contained
397397
| (10,10) | ((0,1),(0,1)) | f
398398
(24 rows)
399399

400-
SELECT '' AS four, points(f1) AS npoints, f1 AS polygon
400+
SELECT '' AS four, npoints(f1) AS npoints, f1 AS polygon
401401
FROM POLYGON_TBL;
402402
four | npoints | polygon
403403
------+---------+---------------------

src/test/regress/expected/int4-too-large.out

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -295,21 +295,3 @@ SELECT (2 + 2) / 2 AS two;
295295
2
296296
(1 row)
297297

298-
SELECT dsqrt(float8 '64') AS eight;
299-
eight
300-
-------
301-
8
302-
(1 row)
303-
304-
SELECT |/float8 '64' AS eight;
305-
eight
306-
-------
307-
8
308-
(1 row)
309-
310-
SELECT ||/float8 '27' AS three;
311-
three
312-
-------
313-
3
314-
(1 row)
315-

0 commit comments

Comments
 (0)