aboutsummaryrefslogtreecommitdiff
path: root/src/test/regress/expected/lseg.out
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/regress/expected/lseg.out')
-rw-r--r--src/test/regress/expected/lseg.out7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/test/regress/expected/lseg.out b/src/test/regress/expected/lseg.out
index 69afc225397..b21d7a294a0 100644
--- a/src/test/regress/expected/lseg.out
+++ b/src/test/regress/expected/lseg.out
@@ -23,10 +23,9 @@ s
(5 rows)
QUERY: SELECT * FROM LSEG_TBL WHERE s <= '[(1,2),(3,4)]'::lseg;
-NOTICE: there is no operator <= for types lseg and lseg
-NOTICE: You will either have to retype this query using an
-NOTICE: explicit cast, or you will have to define the operator
-ERROR: <= for lseg and lseg using CREATE OPERATOR
+ERROR: There is no operator '<=' for types 'lseg' and 'lseg'
+ You will either have to retype this query using an explicit cast,
+ or you will have to define the operator using CREATE OPERATOR
QUERY: SELECT * FROM LSEG_TBL WHERE (s <-> '[(1,2),(3,4)]'::lseg) < 10;
s
------------------