Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-bli committed May 13, 2024
1 parent b2ace9e commit e0b6658
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,6 @@ private[snowflake] class JDBCWrapper {
// Snowflake-todo: Verify all types.
val answer = sqlType match {
// scalastyle:off
case java.sql.Types.ARRAY => null
case java.sql.Types.BIGINT =>
if (signed) {
LongType
Expand Down Expand Up @@ -340,6 +339,8 @@ private[snowflake] class JDBCWrapper {
// case java.sql.Types.VARBINARY => BinaryType
case java.sql.Types.VARCHAR => StringType
case java.sql.Types.BINARY => BinaryType
case java.sql.Types.STRUCT => StringType
case java.sql.Types.ARRAY => StringType
case _ => null
// scalastyle:on
}
Expand Down

0 comments on commit e0b6658

Please sign in to comment.