You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by li...@apache.org on 2024/01/03 17:59:51 UTC

(arrow-adbc) branch main updated: test(go/adbc/driver/snowflake): update value in test (#1428)

This is an automated email from the ASF dual-hosted git repository.

lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


The following commit(s) were added to refs/heads/main by this push:
     new ec68c931 test(go/adbc/driver/snowflake): update value in test (#1428)
ec68c931 is described below

commit ec68c9316f545a74b0942c7cd3ca7730a141ee3c
Author: David Li <li...@gmail.com>
AuthorDate: Wed Jan 3 12:59:46 2024 -0500

    test(go/adbc/driver/snowflake): update value in test (#1428)
---
 ci/conda_env_python.txt                 | 3 ++-
 go/adbc/driver/snowflake/driver_test.go | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/ci/conda_env_python.txt b/ci/conda_env_python.txt
index 5ebb75ee..78fa8557 100644
--- a/ci/conda_env_python.txt
+++ b/ci/conda_env_python.txt
@@ -23,6 +23,7 @@ pytest
 setuptools
 
 # For integration testing
-polars
+# 0.20.3 is broken on conda-forge
+polars<=0.20.2
 protobuf
 python-duckdb
diff --git a/go/adbc/driver/snowflake/driver_test.go b/go/adbc/driver/snowflake/driver_test.go
index 3230fed5..61e94486 100644
--- a/go/adbc/driver/snowflake/driver_test.go
+++ b/go/adbc/driver/snowflake/driver_test.go
@@ -400,7 +400,7 @@ func (suite *SnowflakeTests) TestStatementEmptyResultSet() {
 	suite.True(rdr.Next())
 	rec := rdr.Record()
 	suite.Equal(n, rec.NumRows())
-	suite.EqualValues(25, rec.NumCols())
+	suite.EqualValues(26, rec.NumCols())
 
 	suite.False(rdr.Next())
 	suite.NoError(rdr.Err())