aboutsummaryrefslogtreecommitdiff
path: root/src/test/regress/expected/geometry.out
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/regress/expected/geometry.out')
-rw-r--r--src/test/regress/expected/geometry.out4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/expected/geometry.out b/src/test/regress/expected/geometry.out
index fa16f72c9e5..69118725f4a 100644
--- a/src/test/regress/expected/geometry.out
+++ b/src/test/regress/expected/geometry.out
@@ -104,8 +104,8 @@ SELECT '' AS one, p1.f1
-- intersection
SELECT '' AS count, p.f1, l.s, l.s # p.f1 AS intersection
FROM LSEG_TBL l, POINT_TBL p;
-ERROR: Unable to identify an operator '#' for types 'lseg' and 'point'
- You will have to retype this query using an explicit cast
+ERROR: operator does not exist: lseg # point
+HINT: No operator matches the given name and argument type(s). You may need to add explicit typecasts.
-- closest point
SELECT '' AS thirty, p.f1, l.s, p.f1 ## l.s AS closest
FROM LSEG_TBL l, POINT_TBL p;