Replies: 1 comment 1 reply
-
This should be addressed by #468 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Why do you want this feature?
I'm working on a
RETURNING
clause for pg_mooncake, after some debugging I found isPlan*
generated by pg_duckdb doesn't includetargetlist
data member, which leads to 0natts
thus no printed value.After manually setting the
targetlist
to beit works in some cases.
Another observation,
PlannedStmt*
created by postgres does containtargetlist
, not gets overwritten by duckdb plan. I expect the only difference between pg plan vs pg_duckdb plan to be execution plan, but not target list.Beta Was this translation helpful? Give feedback.
All reactions