yiffspace 0.1.0 → 0.1.1
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2c5a6f91681f3b27a8a9ae4c3846ce05893cfcfab2ff26387be86ae036a36c3c
|
|
4
|
+
data.tar.gz: 1e2897c5ce9d77e00f914e2e2feb968022f0d7c6e8cc08cc779741c2d3f02065
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 64e931b055288ffd30590af4aa1668684647d915da22c9d9d33cb1f58fabdd452887a7dc96761dfdea8a544334a68966a67821f4a2a7e3726978d2a46ab73695
|
|
7
|
+
data.tar.gz: 1715c43fef12acee13bf66a35db09886caff6ef1c77f23690588b04707fcc2649f1d0adc07288bd2c88c72587e61f9102320f42bc18315bf8e0e87e39937ca8d
|
|
@@ -7,7 +7,7 @@ module YiffSpace
|
|
|
7
7
|
module PostgreSQL
|
|
8
8
|
module CrossJoinLateral
|
|
9
9
|
# noinspection RubyInstanceMethodNamingConvention
|
|
10
|
-
def
|
|
10
|
+
def visit_YiffSpace_Extensions_Arel_Nodes_CrossJoinLateral(o, collector)
|
|
11
11
|
collector << "CROSS JOIN LATERAL "
|
|
12
12
|
visit(o.left, collector)
|
|
13
13
|
end
|
|
@@ -7,7 +7,7 @@ module YiffSpace
|
|
|
7
7
|
module PostgreSQL
|
|
8
8
|
module LeftJoinLateral
|
|
9
9
|
# noinspection RubyInstanceMethodNamingConvention
|
|
10
|
-
def
|
|
10
|
+
def visit_YiffSpace_Extensions_Arel_Nodes_LeftJoinLateral(o, collector)
|
|
11
11
|
collector << "LEFT JOIN LATERAL "
|
|
12
12
|
visit(o.left, collector)
|
|
13
13
|
return unless o.right
|
data/lib/yiffspace/version.rb
CHANGED