You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "lidavidm (via GitHub)" <gi...@apache.org> on 2023/09/14 16:05:15 UTC

[GitHub] [arrow-adbc] lidavidm opened a new issue, #1064: go/adbc/driver/snowflake: quote/escape names in ingestion

lidavidm opened a new issue, #1064:
URL: https://github.com/apache/arrow-adbc/issues/1064

   We currently [quote](https://github.com/apache/arrow-adbc/blob/e20202bdd115f24e4eba57d4d873aa360ff10e4e/go/adbc/driver/snowflake/statement.go#L284) column names and don't do anything with table names, but this is wrong in two ways:
   
   - We're using Go string literal quoting, which isn't correct; we should [double-quote and escape quotes by doubling up quotes](https://docs.snowflake.com/en/sql-reference/identifiers-syntax#double-quoted-identifiers)
   - We should quote table names, too.
   
   A quick search didn't turn up anything in Gosnowflake to handle this so we'd have to do it ourselves.


-- 
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: issues-unsubscribe@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] go/adbc/driver/snowflake: quote/escape names in ingestion [arrow-adbc]

Posted by "lidavidm (via GitHub)" <gi...@apache.org>.
lidavidm closed issue #1064: go/adbc/driver/snowflake: quote/escape names in ingestion
URL: https://github.com/apache/arrow-adbc/issues/1064


-- 
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: issues-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] go/adbc/driver/snowflake: quote/escape names in ingestion [arrow-adbc]

Posted by "lidavidm (via GitHub)" <gi...@apache.org>.
lidavidm commented on issue #1064:
URL: https://github.com/apache/arrow-adbc/issues/1064#issuecomment-2082030196

   This got covered by #1738


-- 
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-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org