Skip to content

Commit

Permalink
Fixing snowflake client
Browse files Browse the repository at this point in the history
  • Loading branch information
torcato committed Jan 30, 2024
1 parent 3b1becd commit d659ece
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ class SnowflakeClient(db: SnowflakeCredential)(implicit settings: RawSettings) e
}
}

override def tableMetadata(database: Option[String], maybeSchema: Option[String], table: String): TableMetadata = {
super.tableMetadata(None, maybeSchema, table)
}

override def wrapSQLException[T](f: => T): T = {
try {
f
Expand Down

0 comments on commit d659ece

Please sign in to comment.