rb_snowflake_client 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 33639407ebfa98e2387ad9924304147b18124ac9ff79bb4d7f5c47a1892f6753
4
- data.tar.gz: 5bca13a6847a4203342f0cc021c61cf4628efff0047887d70bb5c1b093ab78f5
3
+ metadata.gz: 65256096cdc18d8da386460e7dffe50ed4c97eeadcb9575a26127944c180c750
4
+ data.tar.gz: 3a3abcf96715b473c714e939de98c9789ba008785ae31b8a2e053958fab665d9
5
5
  SHA512:
6
- metadata.gz: 0cc917ffaccb66e29484b6c310fb2f799c7d680e67492ba294f045c8d8f9be438486cce544e1d35329249b555cdde6ef74abbb2d27846e8888b451bc1325773c
7
- data.tar.gz: 416aaaf3c12c2fd444dd42b4de01c120469ac9a2dac5da32fe98bc0d892c03c2c0fd1fc4a445a8df19a13140b245fcd69adc5558f33b79aa74c24210e8b1a7ef
6
+ metadata.gz: cb1a4ae0c17e298604bb11bf0999c3dfaaaef849fa32963e0b8ab1e84081d7fed480c2c33f2ce7d6a8dbf2998e21a30e2c4e0d623b4d073b358df2f45e2fba1c
7
+ data.tar.gz: 7264d27547f63e8311ab10b03c40be9543b6e83dcc66296de973d7f6fc44ebef3a599d76a0f8fe1063d36aec94dd84b59894b331a871974684574f7177f8e8cb
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rb_snowflake_client (1.0.2)
4
+ rb_snowflake_client (1.0.3)
5
5
  concurrent-ruby (>= 1.2)
6
6
  connection_pool (>= 2.4)
7
7
  dotenv (>= 2.8)
@@ -136,8 +136,8 @@ module RubySnowflake
136
136
  response = nil
137
137
  connection_pool.with do |connection|
138
138
  request_body = {
139
- "statement" => query, "warehouse" => warehouse,
140
- "database" => database, "timeout" => @query_timeout
139
+ "statement" => query, "warehouse" => warehouse&.upcase,
140
+ "database" => database&.upcase, "timeout" => @query_timeout
141
141
  }
142
142
 
143
143
  response = request_with_auth_and_headers(
@@ -1,3 +1,3 @@
1
1
  module RubySnowflake
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rb_snowflake_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rinsed
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-16 00:00:00.000000000 Z
11
+ date: 2024-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby