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/05/05 12:17:49 UTC

[GitHub] [arrow-adbc] lidavidm opened a new issue, #655: go/adbc/driver/snowflake: integration tests failing

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

   ```
   === RUN   TestADBCSnowflake/TestMetadataGetObjectsColumns/no_filter
       validation.go:314: 
           	Error Trace:	/Users/runner/work/arrow-adbc/arrow-adbc/go/adbc/validation/validation.go:314
           	            				/Users/runner/go/pkg/mod/github.com/stretchr/testify@v1.8.2/suite/suite.go:112
           	Error:      	Received unexpected error:
           	            	I/O: SqlState: 02000, msg: 003030 (02000): Uncaught exception of type 'STATEMENT_ERROR' on line 15 at position 13 : SQL compilation error:
           	            	Shared database is no longer available for use. It will need to be re-created if and when the publisher makes it available again.
           	Test:       	TestADBCSnowflake/TestMetadataGetObjectsColumns/no_filter
   === RUN   TestADBCSnowflake/TestMetadataGetObjectsColumns/filter:_in%
       validation.go:314: 
           	Error Trace:	/Users/runner/work/arrow-adbc/arrow-adbc/go/adbc/validation/validation.go:314
           	            				/Users/runner/go/pkg/mod/github.com/stretchr/testify@v1.8.2/suite/suite.go:112
           	Error:      	Received unexpected error:
           	            	I/O: SqlState: 02000, msg: 003030 (02000): Uncaught exception of type 'STATEMENT_ERROR' on line 15 at position 13 : SQL compilation error:
           	            	Shared database is no longer available for use. It will need to be re-created if and when the publisher makes it available again.
           	Test:       	TestADBCSnowflake/TestMetadataGetObjectsColumns/filter:_in%
   ```
   
   and then
   
   ```
    [ RUN      ] SnowflakeConnectionTest.MetadataGetObjectsDbSchemas
   /home/runner/work/arrow-adbc/arrow-adbc/c/validation/adbc_validation.cc:493: Failure
   Value of: AdbcConnectionGetObjects(&connection, 2, nullptr, nullptr, nullptr, nullptr, nullptr, &reader.stream.value, &error)
   Expected: is 0 (OK)
     Actual: '\n' (10, 0xA) (of type unsigned char), 10 (IO)
   Error message: [Snowflake] 003030 (02000): Uncaught exception of type 'STATEMENT_ERROR' on line 15 at position 13 : SQL compilation error:
   Shared database is no longer available for use. It will need to be re-created if and when the publisher makes it available again.
   [  FAILED  ] SnowflakeConnectionTest.MetadataGetObjectsDbSchemas (2758 ms)
   [ RUN      ] SnowflakeConnectionTest.MetadataGetObjectsTables
   /home/runner/work/arrow-adbc/arrow-adbc/c/validation/adbc_validation.cc:578: Failure
   Value of: AdbcConnectionGetObjects(&connection, 3, nullptr, nullptr, expected.first, nullptr, nullptr, &reader.stream.value, &error)
   Expected: is 0 (OK)
     Actual: '\n' (10, 0xA) (of type unsigned char), 10 (IO)
   Error message: [Snowflake] 003030 (02000): Uncaught exception of type 'STATEMENT_ERROR' on line 15 at position 13 : SQL compilation error:
   Shared database is no longer available for use. It will need to be re-created if and when the publisher makes it available again.
   Google Test trace:
   /home/runner/work/arrow-adbc/arrow-adbc/c/validation/adbc_validation.cc:575: Filter: (no filter); table should exist? true
   [  FAILED  ] SnowflakeConnectionTest.MetadataGetObjectsTables (3549 ms)
   [ RUN      ] SnowflakeConnectionTest.MetadataGetObjectsTablesTypes
   /home/runner/work/arrow-adbc/arrow-adbc/c/validation/adbc_validation.cc:652: Failure
   Value of: AdbcConnectionGetObjects(&connection, 3, nullptr, nullptr, nullptr, table_types.data(), nullptr, &reader.stream.value, &error)
   Expected: is 0 (OK)
     Actual: '\n' (10, 0xA) (of type unsigned char), 10 (IO)
   Error message: [Snowflake] 003030 (02000): Uncaught exception of type 'STATEMENT_ERROR' on line 15 at position 13 : SQL compilation error:
   Shared database is no longer available for use. It will need to be re-created if and when the publisher makes it available again.
   [  FAILED  ] SnowflakeConnectionTest.MetadataGetObjectsTablesTypes (3066 ms)
   [ RUN      ] SnowflakeConnectionTest.MetadataGetObjectsColumns
   /home/runner/work/arrow-adbc/arrow-adbc/c/validation/adbc_validation.cc:741: Failure
   Value of: AdbcConnectionGetObjects( &connection, 0, nullptr, nullptr, nullptr, nullptr, test_case.filter.has_value() ? test_case.filter->c_str() : nullptr, &reader.stream.value, &error)
   Expected: is 0 (OK)
     Actual: '\n' (10, 0xA) (of type unsigned char), 10 (IO)
   Error message: [Snowflake] 003030 (02000): Uncaught exception of type 'STATEMENT_ERROR' on line 15 at position 13 : SQL compilation error:
   Shared database is no longer available for use. It will need to be re-created if and when the publisher makes it available again.
   Google Test trace:
   /home/runner/work/arrow-adbc/arrow-adbc/c/validation/adbc_validation.cc:735: Filter: (no filter)
   [  FAILED  ] SnowflakeConnectionTest.MetadataGetObjectsColumns (3192 ms)
   ```
   
   
   Also:
   
   ```
   [ RUN      ] SnowflakeStatementTest.SqlIngestSample
   /home/runner/work/arrow-adbc/arrow-adbc/c/validation/adbc_validation.cc:1257: Failure
   Value of: AdbcStatementExecuteQuery(&statement, &reader.stream.value, &reader.rows_affected, &error)
   Expected: is 0 (OK)
     Actual: '\t' (9) (of type unsigned char), 9 (INTERNAL)
   Error message: [Snowflake] 000904 (42000): SQL compilation error: error line 1 at position 35
   invalid identifier '"int64s"'
   ```


-- 
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


[GitHub] [arrow-adbc] zeroshade commented on issue #655: go/adbc/driver/snowflake: integration tests failing

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

   This is new and different.....I'll take a look and see what i can figure out


-- 
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


[GitHub] [arrow-adbc] zeroshade commented on issue #655: go/adbc/driver/snowflake: integration tests failing

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

   @lidavidm looks like thie issue has something to do with the `WIKIDATA` database on the IBIS_TESTING account. Maybe I should set up a separate ADBC_TESTING account rather than piggy backing on the IBIS_TESTING one like i'm doing now haha.


-- 
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


[GitHub] [arrow-adbc] zeroshade closed issue #655: go/adbc/driver/snowflake: integration tests failing

Posted by "zeroshade (via GitHub)" <gi...@apache.org>.
zeroshade closed issue #655: go/adbc/driver/snowflake: integration tests failing
URL: https://github.com/apache/arrow-adbc/issues/655


-- 
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


[GitHub] [arrow-adbc] lidavidm commented on issue #655: go/adbc/driver/snowflake: integration tests failing

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

   @zeroshade do you have an idea about the issues about the "shared database"?


-- 
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