]> granicus.if.org Git - postgresql/commitdiff
Update test for newly implemented "<=" operator.
authorThomas G. Lockhart <lockhart@fourpalms.org>
Wed, 11 Feb 1998 04:13:33 +0000 (04:13 +0000)
committerThomas G. Lockhart <lockhart@fourpalms.org>
Wed, 11 Feb 1998 04:13:33 +0000 (04:13 +0000)
src/test/regress/expected/lseg.out

index b21d7a294a029d8d41769f512677d25056243951..4b80d01c306041b7231b7402f81a596f94540e85 100644 (file)
@@ -23,9 +23,11 @@ s
 (5 rows)
 
 QUERY: SELECT * FROM LSEG_TBL WHERE s <= '[(1,2),(3,4)]'::lseg;
-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
+s            
+-------------
+[(1,2),(3,4)]
+(1 row)
+
 QUERY: SELECT * FROM LSEG_TBL WHERE (s <-> '[(1,2),(3,4)]'::lseg) < 10;
 s                 
 ------------------