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 d6ddc0110 test(go/adbc/driver/snowflake): missed a quote (#1799)
d6ddc0110 is described below
commit d6ddc0110b9e9bd12af6d7f1e7ae36e1c869fc83
Author: Matt Topol <[email protected]>
AuthorDate: Tue Apr 30 18:56:31 2024 -0400
test(go/adbc/driver/snowflake): missed a quote (#1799)
Fixing an issue showing up in test runs such as
https://github.com/apache/arrow-adbc/actions/runs/8898022790/job/24435792042
---
go/adbc/driver/snowflake/driver_test.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/go/adbc/driver/snowflake/driver_test.go
b/go/adbc/driver/snowflake/driver_test.go
index 4c6f29994..de175c3a0 100644
--- a/go/adbc/driver/snowflake/driver_test.go
+++ b/go/adbc/driver/snowflake/driver_test.go
@@ -515,7 +515,7 @@ func (suite *SnowflakeTests)
TestSqlIngestRecordAndStreamAreEquivalent() {
suite.NoError(err)
suite.Require().NoError(suite.stmt.BindStream(suite.ctx, stream))
-
suite.Require().NoError(suite.stmt.SetOption(adbc.OptionKeyIngestTargetTable,
"bulk_ingest_bind_stream\""))
+
suite.Require().NoError(suite.stmt.SetOption(adbc.OptionKeyIngestTargetTable,
"bulk_ingest_bind_stream"))
n, err = suite.stmt.ExecuteUpdate(suite.ctx)
suite.Require().NoError(err)
suite.EqualValues(3, n)