File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -13,3 +13,4 @@ SF_USER=<user>
13
13
SF_PASSWORD = <password>
14
14
SF_ROLE = <role> # optional
15
15
SF_SHARE = <share> # optional
16
+ SF_WAREHOUSE = <warehouse> # optional
Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ const connection = snowflake.createConnection({
8
8
account : process . env . SF_ACCOUNT ,
9
9
username : process . env . SF_USER ,
10
10
password : process . env . SF_PASSWORD ,
11
- role : process . env . SF_ROLE
11
+ role : process . env . SF_ROLE ,
12
+ warehouse : process . env . SF_WAREHOUSE ,
12
13
} ) ;
13
14
14
15
connection . connect ( ( err ) => {
Original file line number Diff line number Diff line change @@ -18,7 +18,8 @@ const connection = snowflake.createConnection({
18
18
account : process . env . SF_ACCOUNT ,
19
19
username : process . env . SF_USER ,
20
20
password : process . env . SF_PASSWORD ,
21
- role : process . env . SF_ROLE
21
+ role : process . env . SF_ROLE ,
22
+ warehouse : process . env . SF_WAREHOUSE ,
22
23
} ) ;
23
24
24
25
connection . connect ( ( err ) => {
You can’t perform that action at this time.
0 commit comments