We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent9b19c12 commitc8e9935Copy full SHA for c8e9935
src/backend/optimizer/prep/prepqual.c
@@ -104,6 +104,8 @@ negate_clause(Node *node)
104
newopexpr->opfuncid=InvalidOid;
105
newopexpr->opresulttype=opexpr->opresulttype;
106
newopexpr->opretset=opexpr->opretset;
107
+newopexpr->opcollid=opexpr->opcollid;
108
+newopexpr->inputcollid=opexpr->inputcollid;
109
newopexpr->args=opexpr->args;
110
newopexpr->location=opexpr->location;
111
return (Node*)newopexpr;
@@ -126,6 +128,7 @@ negate_clause(Node *node)
126
128
newopexpr->opno=negator;
127
129
130
newopexpr->useOr= !saopexpr->useOr;
131
+newopexpr->inputcollid=saopexpr->inputcollid;
132
newopexpr->args=saopexpr->args;
133
newopexpr->location=saopexpr->location;
134