Skip to content

Commit

Permalink
Merge pull request #38 from hasura/gavin/snowflake-name-quoting
Browse files Browse the repository at this point in the history
Snowflake: Don't quote table identifiers like "DB.SCHEMA.TABLE" to avoid interpreting literally
  • Loading branch information
GavinRay97 authored Jan 6, 2025
2 parents 72b6f52 + 0276f07 commit 5cd7850
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class SnowflakeDataConnectorService @Inject constructor(

override val jooqDialect = SQLDialect.SNOWFLAKE
override val jooqSettings =
commonDSLContextSettings.withRenderQuotedNames(RenderQuotedNames.EXPLICIT_DEFAULT_QUOTED)
commonDSLContextSettings.withRenderQuotedNames(RenderQuotedNames.EXPLICIT_DEFAULT_UNQUOTED)
override val sqlGenerator = CTEQueryGenerator
override val mutationTranslator = MutationTranslator
}

0 comments on commit 5cd7850

Please sign in to comment.