ruby_snowflake_client 1.3.3.pre.debug → 1.3.4.pre.debug

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ed451160b70115d42339088f433539eb78533261a28a3253959c36bec3de4146
4
- data.tar.gz: 13a570363140f1f7e5fb6afd3d42e09648a4b24198be74fb8d73ee3753747f27
3
+ metadata.gz: bec8469f479dc0066998f11abb64e22696105eadcba0e7ad45598fbd5a59430b
4
+ data.tar.gz: 2c7c7153acd64e81a392a8d1a3425ea1d0e35987adec789272b7b96177557cf4
5
5
  SHA512:
6
- metadata.gz: ca68138928a8ca789ed7e4d61a73b6679b22ed2a427cf38ac2fed4e8ba256949849354fcb34d14cdb66aa7ab246dacbf0d7468b1d786e399083f1f0f8cf2f91a
7
- data.tar.gz: a1df5c79270fca41aa7c1a737db77f08d1632bca3d80c9dba8c19ff2564f7710f9c02e49162a60261bd6b4888eaa6eaef974fd48ef687e0a0b31d91c57cbc576
6
+ metadata.gz: 702bd1dde511ebb08ee2826bb51768fa4a85b17d1cb5ac20859a956a6c199a3a6ae8498db71d81763f5077eeecf695595b3b119c48e5189438cd25588c4459f7
7
+ data.tar.gz: 258ef53f2da53957ffc92e61204cd73a65607cb8c9d8583c3467cae6a0f41f76dd2cb72c2c53d6fd6684872f351080718b151d0696c37e335693ff7b4b9bcd82
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ruby_snowflake_client (1.3.3.pre.debug)
4
+ ruby_snowflake_client (1.3.4.pre.debug)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -24,11 +24,10 @@ var rbSnowflakeClientClass C.VALUE
24
24
  var rbSnowflakeResultClass C.VALUE
25
25
  var rbSnowflakeModule C.VALUE
26
26
 
27
- var RESULT_IDENTIFIER = C.rb_intern(C.CString("rows"))
28
- var RESULT_DURATION = C.rb_intern(C.CString("@query_duration"))
29
- var ERROR_IDENT = C.rb_intern(C.CString("@error"))
27
+ var RESULT_DURATION C.VALUE
28
+ var ERROR_IDENT C.VALUE
30
29
 
31
- var objects = make(map[interface{}]bool)
30
+ var objects = make(map[any]bool)
32
31
  var resultMap = make(map[C.VALUE]*SnowflakeResult)
33
32
  var clientRef = make(map[C.VALUE]*SnowflakeClient)
34
33
 
@@ -43,6 +42,9 @@ func Inspect(self C.VALUE) C.VALUE {
43
42
 
44
43
  //export Init_ruby_snowflake_client_ext
45
44
  func Init_ruby_snowflake_client_ext() {
45
+ fmt.Println("Initializing consts")
46
+ RESULT_DURATION = C.rb_intern(C.CString("@query_duration"))
47
+ ERROR_IDENT = C.rb_intern(C.CString("@error"))
46
48
  fmt.Println("[ruby-snowflake] Initializing module")
47
49
  rbSnowflakeModule = C.rb_define_module(C.CString("Snowflake"))
48
50
  fmt.Println("[ruby-snowflake] Initializing client class")
@@ -1,3 +1,3 @@
1
1
  module RubySnowflakeClient
2
- VERSION = '1.3.3-debug'
2
+ VERSION = '1.3.4-debug'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_snowflake_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.3.pre.debug
4
+ version: 1.3.4.pre.debug
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rinsed
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-27 00:00:00.000000000 Z
11
+ date: 2023-08-15 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |
14
14
  Using the `Go` library for Snowflake to query and creating native Ruby objects,