davlee1972 commented on issue #1777:
URL: https://github.com/apache/arrow-adbc/issues/1777#issuecomment-2097019484

   The go driver repo has code that does strip ".privatelink" from the account, 
but I'm not sure ADBC driver uses this file..
   
   
https://github.com/snowflakedb/gosnowflake/blob/0389a9ab3f7073d4fbf527c06990ce11bd93b17e/dsn.go#L148C1-L156C3
   
   ```
        // in case account includes region
        posDot := strings.Index(cfg.Account, ".")
        if posDot > 0 {
                if cfg.Region != "" {
                        return "", errInvalidRegion()
                }
                cfg.Region = cfg.Account[posDot+1:]
                cfg.Account = cfg.Account[:posDot]
        }
   ```
   
   


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to