Skip to content

Commit

Permalink
Set quoted identiferes ignore case session parameter (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
koszti authored Feb 21, 2021
1 parent 42a2ccf commit 6fd8a28
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/ls/driver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export default class SnowflakeDriver extends AbstractDriver<DriverLib, DriverOpt
try {
const conn = new Snowflake(connOptions);
await conn.connect();
await conn.execute('ALTER SESSION SET QUOTED_IDENTIFIERS_IGNORE_CASE = FALSE');
this.connection = Promise.resolve(conn);
} catch (error) {
return Promise.reject(error);
Expand Down

0 comments on commit 6fd8a28

Please sign in to comment.