Skip to content

Instantly share code, notes, and snippets.

@krk
Created June 27, 2017 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krk/424d4fce9b74940486ea08617617e4db to your computer and use it in GitHub Desktop.
Save krk/424d4fce9b74940486ea08617617e4db to your computer and use it in GitHub Desktop.
*** 12642,12648 ****
}
static Node *
! makeSetOp(SetOperation op, bool all, Node *larg, Node *rarg)
{
SelectStmt *n = makeNode(SelectStmt);
--- 12649,12655 ----
}
static Node *
! makeSetOp(SetOperation op, bool all, List *correspondingClause, Node *larg, Node *rarg)
{
SelectStmt *n = makeNode(SelectStmt);
***************
*** 12650,12655 ****
--- 12657,12663 ----
n->all = all;
n->larg = (SelectStmt *) larg;
n->rarg = (SelectStmt *) rarg;
+ n->correspondingClause = correspondingClause;
return (Node *) n;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment