create_table() adding quotes automatically #6538
-
|
When we pass a string to create_table’s ‘name’ parameter, quotes are getting appended to the passed string. Example: It’s returning: CREATE TABLE “””””a””.””b””.”””c”””” (…) Eventually, we need either “a”.”b”.”c” or a.b.c |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 18 replies
-
|
Hi @vmsaipreeth -- could you add some triple backticks (```) around your examples so it's easier to see which sorts of quotes you are using in which positions? And can you explain a little bit more about what you are doing and which backend(s) you are using? Thanks! |
Beta Was this translation helpful? Give feedback.
-
|
Yes, Tried that too. we got Also, the Here, the weird part is that it is throwing we also tried having a try and except block for this since it was throwing We again see the same |
Beta Was this translation helpful? Give feedback.
Apologies for the delay.
We made sure we are on ibis version
6.0.0. We played around with the latest version and tried all the possible ways(discussed above) to usecreate_table().Eventually, the table name which we pass as a parameter to
create_table()is case sensitive and only accepts lower case. Not sure if this is the same scenario with other backends.However, we are now able to use
create_table()directly.Thank you @gforsyth and @cpcloud for quick responses and work arounds. We highly appreciate it. Will reach out if we have any following questions.