clickhouse-activerecord 0.1.6 → 0.1.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -5
- data/lib/clickhouse-activerecord/arel/visitors/to_sql.rb +1 -1
- data/lib/clickhouse-activerecord/version.rb +1 -1
- metadata +2 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8e80f08b4bab8451df04097e2b93b4a169586f09
|
4
|
+
data.tar.gz: b9951b51f407e6ee7053a64dc357941ead020502
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 506cf869493afa718ed43f3d80e86b15e8db3113b522d7e7c7719ba6bd5979e6d439980b1b6e3bd9fc03509de61c8e8f32998079416d0a46971efc37a0e15392
|
7
|
+
data.tar.gz: ac86bdb9661ef825e725fd12831e971d97a15375da5c0bbbc3bd6ee38997cb59fcd0b4a3fcd22570a8769720a6c342d2630061d111f297ab0a87535cf414b59e
|
data/README.md
CHANGED
@@ -80,13 +80,13 @@ ActionView.maximum(:date)
|
|
80
80
|
#=> 'Wed, 29 Nov 2017'
|
81
81
|
```
|
82
82
|
|
83
|
-
|
83
|
+
## Donations
|
84
84
|
|
85
|
-
|
85
|
+
Donations to this project are going directly to [PNixx](https://github.com/PNixx), the original author of this project:
|
86
86
|
|
87
|
-
|
88
|
-
|
89
|
-
|
87
|
+
* BTC address: `3Dny9T9PTVYoQhnJxgZorRRNycYYiPrYMA`
|
88
|
+
* ETH address: `0x7eec67c120828334d0e802ce46fc4895f2b386c4`
|
89
|
+
* XMR address: `42gP71qLB5M43RuDnrQ3vSJFFxis9Kw9VMURhpx9NLQRRwNvaZRjm2TFojAMC8Fk1BQhZNKyWhoyJSn5Ak9kppgZPjE17Zh`
|
90
90
|
|
91
91
|
## Contributing
|
92
92
|
|
@@ -7,7 +7,7 @@ module ClickhouseActiverecord
|
|
7
7
|
|
8
8
|
def aggregate(name, o, collector)
|
9
9
|
# replacing function name for materialized view
|
10
|
-
if o.expressions.first && o.expressions.first != '*' && o.expressions.first.relation && o.expressions.first.relation.engine && o.expressions.first.relation.engine.is_view
|
10
|
+
if o.expressions.first && o.expressions.first != '*' && !o.expressions.first.is_a?(String) && o.expressions.first.relation && o.expressions.first.relation.engine && o.expressions.first.relation.engine.is_view
|
11
11
|
super("#{name.downcase}Merge", o, collector)
|
12
12
|
else
|
13
13
|
super
|
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: 0.1.
|
4
|
+
version: 0.1.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:
|
11
|
+
date: 2018-01-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -130,4 +130,3 @@ signing_key:
|
|
130
130
|
specification_version: 4
|
131
131
|
summary: ClickHouse ActiveRecord
|
132
132
|
test_files: []
|
133
|
-
has_rdoc:
|