Commit 2d49637c authored by Tom Lane's avatar Tom Lane

Tweak create_operator regress test so it doesn't illustrate

incorrect usage of commutator link.
parent 94bb87f9
......@@ -8,7 +8,8 @@ QUERY: CREATE OPERATOR <% (
leftarg = point,
rightarg = widget,
procedure = pt_in_widget,
commutator = >=%
commutator = >% ,
negator = >=%
);
QUERY: CREATE OPERATOR @#@ (
rightarg = int4,
......
......@@ -12,7 +12,8 @@ CREATE OPERATOR <% (
leftarg = point,
rightarg = widget,
procedure = pt_in_widget,
commutator = >=%
commutator = >% ,
negator = >=%
);
CREATE OPERATOR @#@ (
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment