Skip to content

Commit

Permalink
forgot to check support test
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroshade committed Feb 23, 2024
1 parent 0c95216 commit 76f4d07
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions go/adbc/validation/validation.go
Original file line number Diff line number Diff line change
Expand Up @@ -1083,6 +1083,10 @@ func (s *StatementTests) TestSqlIngestErrors() {
})

s.Run("overwrite and incompatible schema", func() {
if !s.Quirks.SupportsErrorIngestIncompatibleSchema() {
s.T().SkipNow()
}

s.Require().NoError(s.Quirks.DropTable(s.Cnxn, "bulk_ingest"))
schema := arrow.NewSchema([]arrow.Field{{
Name: "int64s", Type: arrow.PrimitiveTypes.Int64, Nullable: true}}, nil)
Expand Down

0 comments on commit 76f4d07

Please sign in to comment.