You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 18, 2023. It is now read-only.
I looked into this a bit more closely. add_query splits the SQL it receives by ;, then sends each one to be executed. However, with prestodb library, the only way I can see to session session variables is passing session_properties to its connect method.
But to do something sensible, you'd want access to the node's configurations so you might set appropriate session variables, but AFAIK, this is not available from within SQLConnectionManager.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi—I have a requirement to do this following
prior to running a query. I am trying to do this in a custom materialisation, so tried this:
This fails as I believe
statement
doesn't support multiple statements.I also tried:
But can see in the
results
variable thatinsert_existing_partitions_behavior
hasn't changed fromAPPEND
, its default value.The text was updated successfully, but these errors were encountered: