projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cad3c5d
)
Update test for newly implemented "<=" operator.
author
Thomas G. Lockhart
Wed, 11 Feb 1998 04:13:33 +0000
(
04:13
+0000)
committer
Thomas G. Lockhart
Wed, 11 Feb 1998 04:13:33 +0000
(
04:13
+0000)
src/test/regress/expected/lseg.out
patch
|
blob
|
blame
|
history
diff --git
a/src/test/regress/expected/lseg.out
b/src/test/regress/expected/lseg.out
index b21d7a294a029d8d41769f512677d25056243951..4b80d01c306041b7231b7402f81a596f94540e85 100644
(file)
--- a/
src/test/regress/expected/lseg.out
+++ b/
src/test/regress/expected/lseg.out
@@
-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
------------------