We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc279c8 commit 11a25e8Copy full SHA for 11a25e8
packages/malloy/src/dialect/snowflake/snowflake.ts
@@ -310,8 +310,9 @@ export class SnowflakeDialect extends Dialect {
310
sqlSelectAliasAsStruct(alias: string): string {
311
return `OBJECT_CONSTRUCT_KEEP_NULL(${alias}.*)`;
312
}
313
+
314
sqlMaybeQuoteIdentifier(identifier: string): string {
- return `"${identifier}"`;
315
+ return '"' + identifier.replace(/"/g, '""') + '"';
316
317
318
sqlCreateTableAsSelect(tableName: string, sql: string): string {
0 commit comments