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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f003299fc1c3d08a88abb3a2607f21c3628185cd05ae5d58b905be208beaa657
4
- data.tar.gz: d57b1608e7c6301b95fe57cb429d83fde083bb8ba8926a99ceaee29ad9c4e24e
3
+ metadata.gz: 289634df459be1ffd78ff014ea8528f279c917b23fb3b0a03b631b93f338367e
4
+ data.tar.gz: ca136525654b5fc1f56bf9cb9d646ce6a0cbcdbd182f5ed0027930cd32543c01
5
5
  SHA512:
6
- metadata.gz: d51a429b1e926fc6934a17a25c3daa43efe3172bf698d54e7df81d65e7a956b8479235b4846d3cc9aba408ebf1a6f04bdec174c18bfb666cb046cc1c430c02c3
7
- data.tar.gz: 240aecd80dd4a6b15e8df741cf0e5fc6e421a8c546ff0dcd6c6ddfc87768f05aa2318f5f14a55d3f445481347511d260c48c793a728b2d5613bbad9d98d1c593
6
+ metadata.gz: 6afa3c5691bb2da19795ffa123582092a410e9fe282d4cba27c6d669d290674d9c6d82bcfa65e65feee9d878ff5ee1d271753a0294a9e4e7649d0d37a3dbf55e
7
+ data.tar.gz: 810df49ab69416931d451d4316c5c971679caaf71f41b8705fa6ffb28f0d396a881ed3e6b6ffd258e9b22ae6332d2d9df444df86f947240fce175235b1a4382d
@@ -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)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ClickhouseNative
4
- VERSION = "0.8.0"
4
+ VERSION = "0.9.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clickhouse-native
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.9.0
5
5
  platform: aarch64-linux-gnu
6
6
  authors:
7
7
  - Yuri Smirnov