Skip to content

Commit 4d618f1

Browse files
Fixing case statements in snowflake driver
1 parent 9327f70 commit 4d618f1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,7 @@ export class SnowflakeDriver extends BaseDriver implements DriverInterface {
450450

451451
await this.execute(connection, 'ALTER SESSION SET TIMEZONE = \'UTC\'', [], false);
452452
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)