clickhouse-native 0.8.0-aarch64-linux-gnu → 0.9.0-aarch64-linux-gnu
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 +4 -4
- data/lib/clickhouse_native/3.3/clickhouse_native.so +0 -0
- data/lib/clickhouse_native/3.4/clickhouse_native.so +0 -0
- data/lib/clickhouse_native/4.0/clickhouse_native.so +0 -0
- data/lib/clickhouse_native/logging.rb +4 -4
- data/lib/clickhouse_native/pool.rb +8 -8
- data/lib/clickhouse_native/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 289634df459be1ffd78ff014ea8528f279c917b23fb3b0a03b631b93f338367e
|
|
4
|
+
data.tar.gz: ca136525654b5fc1f56bf9cb9d646ce6a0cbcdbd182f5ed0027930cd32543c01
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6afa3c5691bb2da19795ffa123582092a410e9fe282d4cba27c6d669d290674d9c6d82bcfa65e65feee9d878ff5ee1d271753a0294a9e4e7649d0d37a3dbf55e
|
|
7
|
+
data.tar.gz: 810df49ab69416931d451d4316c5c971679caaf71f41b8705fa6ffb28f0d396a881ed3e6b6ffd258e9b22ae6332d2d9df444df86f947240fce175235b1a4382d
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -12,19 +12,19 @@ module ClickhouseNative
|
|
|
12
12
|
module Logging
|
|
13
13
|
LEVEL = :debug
|
|
14
14
|
|
|
15
|
-
def execute(sql)
|
|
15
|
+
def execute(sql, **opts)
|
|
16
16
|
log_sql(sql) { super }
|
|
17
17
|
end
|
|
18
18
|
|
|
19
|
-
def query(sql)
|
|
19
|
+
def query(sql, **opts)
|
|
20
20
|
log_sql(sql) { super }
|
|
21
21
|
end
|
|
22
22
|
|
|
23
|
-
def query_value(sql)
|
|
23
|
+
def query_value(sql, **opts)
|
|
24
24
|
log_sql(sql) { super }
|
|
25
25
|
end
|
|
26
26
|
|
|
27
|
-
def query_each(sql, &)
|
|
27
|
+
def query_each(sql, **opts, &)
|
|
28
28
|
log_sql(sql) { super }
|
|
29
29
|
end
|
|
30
30
|
|
|
@@ -53,20 +53,20 @@ module ClickhouseNative
|
|
|
53
53
|
end
|
|
54
54
|
end
|
|
55
55
|
|
|
56
|
-
def execute(sql)
|
|
57
|
-
with { |c| c.execute(sql) }
|
|
56
|
+
def execute(sql, **opts)
|
|
57
|
+
with { |c| c.execute(sql, **opts) }
|
|
58
58
|
end
|
|
59
59
|
|
|
60
|
-
def query(sql)
|
|
61
|
-
with { |c| c.query(sql) }
|
|
60
|
+
def query(sql, **opts)
|
|
61
|
+
with { |c| c.query(sql, **opts) }
|
|
62
62
|
end
|
|
63
63
|
|
|
64
|
-
def query_each(sql, &block)
|
|
65
|
-
with { |c| c.query_each(sql, &block) }
|
|
64
|
+
def query_each(sql, **opts, &block)
|
|
65
|
+
with { |c| c.query_each(sql, **opts, &block) }
|
|
66
66
|
end
|
|
67
67
|
|
|
68
|
-
def query_value(sql)
|
|
69
|
-
with { |c| c.query_value(sql) }
|
|
68
|
+
def query_value(sql, **opts)
|
|
69
|
+
with { |c| c.query_value(sql, **opts) }
|
|
70
70
|
end
|
|
71
71
|
|
|
72
72
|
def insert(table, rows, **opts)
|