Skip to content

Commit

Permalink
test(go/adbc/driver/snowflake): missed a quote (apache#1799)
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroshade authored Apr 30, 2024
1 parent 608a1e4 commit d6ddc01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/adbc/driver/snowflake/driver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit d6ddc01

Please sign in to comment.