clickhouse-activerecord 1.0.6 → 1.0.7
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/CHANGELOG.md +8 -0
- data/lib/clickhouse-activerecord/tasks.rb +5 -1
- data/lib/clickhouse-activerecord/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 17575531d9c1ae85c10c20230bb78014f9f0e07affe672b683b66651e37af812
|
|
4
|
+
data.tar.gz: 14ac2cfb7e6cfa344cf2284a76082e5476e08cfe77a499695157e09c58cd7765
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '09973aaa310292cfdef323b4c66b2088db297b243b90e6149e7f6998165a9208adf74cbeb2665f0230ee6ac8dacc1632e1562eaff085bf07d6689ccfbcc0d75c'
|
|
7
|
+
data.tar.gz: 38b8ba94d466720ff860a62a2542d1cb2ec106c88ffd000979203e8c9403e0aa42d0f4ba3e83e822270888a11b07f3b96296785c0fdc7b1b39fa12e019b07e6e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
### Version 1.0.5 (Apr 26, 2024)
|
|
2
|
+
|
|
3
|
+
* Support table indexes
|
|
4
|
+
* Fix non-canonical UUID by [@PauloMiranda98](https://github.com/PauloMiranda98) in (#117)
|
|
5
|
+
* Fix precision loss due to JSON float parsing by [@jenskdsgn](https://github.com/jenskdsgn) in (#129)
|
|
6
|
+
* Support functions by [@felix-dumit](https://github.com/felix-dumit) in (#120)
|
|
7
|
+
* Hotfix/rails71 change column by [@trumenov](https://github.com/trumenov) in (#132)
|
|
8
|
+
|
|
1
9
|
### Version 1.0.5 (Mar 14, 2024)
|
|
2
10
|
|
|
3
11
|
* GitHub workflows
|
|
@@ -4,6 +4,10 @@ module ClickhouseActiverecord
|
|
|
4
4
|
class Tasks
|
|
5
5
|
delegate :connection, :establish_connection, to: ActiveRecord::Base
|
|
6
6
|
|
|
7
|
+
def self.using_database_configurations?
|
|
8
|
+
true
|
|
9
|
+
end
|
|
10
|
+
|
|
7
11
|
def initialize(configuration)
|
|
8
12
|
@configuration = configuration
|
|
9
13
|
end
|
|
@@ -50,7 +54,7 @@ module ClickhouseActiverecord
|
|
|
50
54
|
functions.each do |function|
|
|
51
55
|
file.puts function + ";\n\n"
|
|
52
56
|
end
|
|
53
|
-
|
|
57
|
+
|
|
54
58
|
tables.each do |table|
|
|
55
59
|
file.puts table + ";\n\n"
|
|
56
60
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: clickhouse-activerecord
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sergey Odintsov
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-04-
|
|
11
|
+
date: 2024-04-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|