Skip to content

Commit 71040e4

Browse files
Fixing case statements in snowflake driver
1 parent d7dc5fe commit 71040e4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/cubejs-snowflake-driver/src/SnowflakeDriver.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,8 @@ export class SnowflakeDriver extends BaseDriver implements DriverInterface {
449449
);
450450

451451
await this.execute(connection, 'ALTER SESSION SET TIMEZONE = \'UTC\'', [], false);
452-
await this.execute(connection, `ALTER SESSION SET STATEMENT_TIMEOUT_IN_SECONDS = ${this.config.executionTimeout}`, [], false);
452+
await this.execute(connection, 'ALTER SESSION SET STATEMENT_TIMEOUT_IN_SECONDS = ${this.config.executionTimeout}', [], false);
453+
await this.execute(connection, 'ALTER SESSION SET QUOTED_IDENTIFIRS_IGNORE_CASE = FALSE', [], false);
453454

454455
return connection;
455456
} catch (e) {

0 commit comments

Comments
 (0)