Skip to content

Commit

Permalink
feat(snowflake-driver): set QUOTED_IDENTIFIERS_IGNORE_CASE=FALSE by d…
Browse files Browse the repository at this point in the history
…efault
  • Loading branch information
KSDaemon committed Feb 1, 2025
1 parent 57bcbc4 commit a250dc1
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions packages/cubejs-snowflake-driver/src/SnowflakeDriver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -453,12 +453,7 @@ export class SnowflakeDriver extends BaseDriver implements DriverInterface {

await this.execute(connection, 'ALTER SESSION SET TIMEZONE = \'UTC\'', [], false);
await this.execute(connection, `ALTER SESSION SET STATEMENT_TIMEOUT_IN_SECONDS = ${this.config.executionTimeout}`, [], false);

// We only want to ignore the case if someone sets the value to true explicitly
// since the default assumption is that casing matters
if (this.config.identIgnoreCase) {
await this.execute(connection, 'ALTER SESSION SET QUOTED_IDENTIFIERS_IGNORE_CASE = TRUE', [], false);
}
await this.execute(connection, `ALTER SESSION SET QUOTED_IDENTIFIERS_IGNORE_CASE = ${this.config.identIgnoreCase}`, [], false);
return connection;
} catch (e) {
this.connection = null;
Expand Down

0 comments on commit a250dc1

Please sign in to comment.