frbvianna commented on issue #3220: URL: https://github.com/apache/arrow-adbc/issues/3220#issuecomment-3141357648
About the schema that is not working (``` SCHEMA_MiXeD_`~!@#$%^&*()-_=+[]{};:\'".",<>?\| 元数æ�®ç¨æˆ·å¤šå—节 ```), I think I nailed it down to the failing character. Looks like the problem is with the backslashes (`\`). I created another schema named `schema\backslash` and similarly cannot retrieve its tables in the GetObjects call if I provide the following string: `"schema\\backslash"` Likewise, if I cannot the SHOW statement in Snowflake, I get no results: `SHOW TERSE SCHEMAS LIKE 'schema\backslash' IN ACCOUNT;` It looks like I can only retrieve it if I use `'schema\\\\backslash'` in the above statement (4 backslashes). But if I pass the string `"schema\\\\\\\\backslash"` to GetObjects, I even get a SQL compilation failure. If I set it to `"schema_backslash"`, it works as expected due to the wildcard. At this point, it's not clear to me whether it's a driver issue or a Snowflake issue. Can you please confirm? Should I perhaps create a separate issue for it? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org