Skip to content

Commit

Permalink
fix handling for binary
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroshade committed Oct 17, 2024
1 parent 9674fd7 commit 50b302e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions c/driver/snowflake/snowflake_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,10 @@ class SnowflakeQuirks : public adbc_validation::DriverQuirks {
case NANOARROW_TYPE_LIST:
case NANOARROW_TYPE_LARGE_LIST:
return NANOARROW_TYPE_STRING;
case NANOARROW_TYPE_BINARY:
case NANOARROW_TYPE_LARGE_BINARY:
case NANOARROW_TYPE_FIXED_SIZE_BINARY:
return NANOARROW_TYPE_BINARY;
default:
return ingest_type;
}
Expand Down

0 comments on commit 50b302e

Please sign in to comment.