Skip to content

Commit 3bf6059

Browse files
format
Co-authored-by: Thomas Chow <[email protected]> Co-authored-by: Thomas Chow <[email protected]> Co-authored-by: Thomas Chow <[email protected]>
1 parent 8b2f05c commit 3bf6059

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cloud_gcp/src/main/scala/ai/chronon/integrations/cloud_gcp/DelegatingBigQueryMetastoreCatalog.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,8 @@ class DelegatingBigQueryMetastoreCatalog extends CatalogExtension {
121121
val tId = ident.namespace().toList match {
122122
case database :: Nil => TableId.of(database, ident.name())
123123
case project :: database :: Nil => TableId.of(project, database, ident.name())
124-
case Nil => throw new IllegalArgumentException(s"Table identifier namespace ${rawIdent} must have at least one part.")
124+
case Nil =>
125+
throw new IllegalArgumentException(s"Table identifier namespace ${rawIdent} must have at least one part.")
125126
}
126127
val table = bigQueryClient.getTable(tId)
127128
table.getDefinition.asInstanceOf[TableDefinition] match {

0 commit comments

Comments
 (0)