Replies: 1 comment
-
you need to pass in the the default db and catalog into qualify_tables |
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
-
I have the following function.
My expectation was it output
SELECT table1.col1, table1.col2 from MYDB.MYSCHEMA.table1 table1
However, I'm getting
SELECT col1, col2 FROM table1 table1
What am I doing wrong with the schema definition?
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions