Possible to make EXCEPT
keyword work?
#197
Unanswered
jasonfilippou
asked this question in
Q&A
Replies: 1 comment
-
Not implemented yet :) It will require modifying the parser first I created #208 to track this |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I have the following (abstract) query that I am trying to pass to
pg-mem
:Unfortunately, it seems as if
pg-mem
does not yet supportEXCEPT
:I DO know how to register functions in
pg-mem
and have done so for some:But for
EXCEPT
, I am not sure if this can be done! We are, after all, talking about functions that manipulate record sets, not strings or dates, for whichregisterFunction()
works well. It is possible for me to implement EXCEPT in memory, but for technical reasons, we need to limit the amount of in-memory (Javascript) manipulations and instead offload everything we can to the SQL.Any ideas? Is this possible in
pg-mem
?MINUS
does NOT appear to be a supportedpg-mem
or evenpsql
operator.Beta Was this translation helpful? Give feedback.
All reactions