Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
hamnis committed May 8, 2024
1 parent 30d0174 commit ac6e070
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,8 @@ lazy val zetasql = crossProject(JVMPlatform)
.settings(
name := "bigquery-zetasql",
libraryDependencies ++= Seq(
"com.google.zetasql.toolkit" % "zetasql-toolkit-core" % "0.5.0" exclude("com.google.cloud", "google-cloud-spanner"),
("com.google.zetasql.toolkit" % "zetasql-toolkit-core" % "0.5.0")
.exclude("com.google.cloud", "google-cloud-spanner"),
"org.scalameta" %% "munit" % "0.7.29",
"org.typelevel" %% "munit-cats-effect-3" % "1.0.7"
),
Expand Down
16 changes: 15 additions & 1 deletion zetasql/src/main/scala/no/nrk/bigquery/ZetaSql.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,21 @@ import cats.effect.Sync
import com.google.common.collect.ImmutableList
import com.google.zetasql.ZetaSQLFunctions.SignatureArgumentKind
import no.nrk.bigquery.syntax.*
import com.google.zetasql.{AnalyzerOptions, FunctionArgumentType, FunctionSignature, LanguageOptions, ParseLocationRange, Parser, SimpleColumn, SimpleTable, SqlException, StructType, TVFRelation, Type, TypeFactory}
import com.google.zetasql.{
AnalyzerOptions,
FunctionArgumentType,
FunctionSignature,
LanguageOptions,
ParseLocationRange,
Parser,
SimpleColumn,
SimpleTable,
SqlException,
StructType,
TVFRelation,
Type,
TypeFactory
}
import com.google.zetasql.ZetaSQLType.TypeKind
import com.google.zetasql.resolvedast.ResolvedCreateStatementEnums.{CreateMode, CreateScope}
import com.google.zetasql.resolvedast.ResolvedNodes
Expand Down

0 comments on commit ac6e070

Please sign in to comment.