presto-client 0.4.11 → 0.4.12

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
  SHA1:
3
- metadata.gz: 83f641dc66fe348b2bcf8336a89facaad2bc87fc
4
- data.tar.gz: e26da220de72ceb700af591e14ec8822438451f7
3
+ metadata.gz: cc62d8a09800529582760c70ab8b9edac4c96da1
4
+ data.tar.gz: cc1c5b78f899093813f80d3176595cba68f41b3a
5
5
  SHA512:
6
- metadata.gz: abd451ce1f2053dd59fba6b8dd49768626fc1fdf2c0bb56b99453d85548672c0f0dd23cd973027376edddeac1af6770dccaffacc77759ab13bad8a743eed29ef
7
- data.tar.gz: af2b7313d164f7c7aac7b58e9e3375a6051447074e9a9afc9314b0a1d83fdf73c87f79a3571e978a63b5300137a0a7b3c917a517a3548c5f8e7d2c598a8ff365
6
+ metadata.gz: 075a2ef5b04abd2677b18ac84d13df013eeaaaa60faaa6a0e686a5c2ecc35bffe8c0273db0dcce997d59dfad93e010b50a45f6e3e1cf4bc2e376eb96c8daa310
7
+ data.tar.gz: cd1751cc00c4f8ddc93737b48778d3878ba9a7cb50049d3244a32936db11103289b94b32198462ff7b94fcac067983766171f75dcf719ffd264f037b13b0c28d
@@ -143,11 +143,14 @@ module Presto::Client
143
143
  end
144
144
  end
145
145
 
146
+ # This is a hybrid of JoinNode.EquiJoinClause and IndexJoinNode.EquiJoinClause
146
147
  class << EquiJoinClause =
147
- Base.new(:probe, :index)
148
+ Base.new(:left, :right, :probe, :index)
148
149
  def decode(hash)
149
150
  obj = allocate
150
151
  obj.send(:initialize_struct,
152
+ hash["left"],
153
+ hash["right"],
151
154
  hash["probe"],
152
155
  hash["index"],
153
156
  )
@@ -15,6 +15,6 @@
15
15
  #
16
16
  module Presto
17
17
  module Client
18
- VERSION = "0.4.11"
18
+ VERSION = "0.4.12"
19
19
  end
20
20
  end
@@ -143,11 +143,14 @@ module Presto::Client
143
143
  end
144
144
  end
145
145
 
146
+ # This is a hybrid of JoinNode.EquiJoinClause and IndexJoinNode.EquiJoinClause
146
147
  class << EquiJoinClause =
147
- Base.new(:probe, :index)
148
+ Base.new(:left, :right, :probe, :index)
148
149
  def decode(hash)
149
150
  obj = allocate
150
151
  obj.send(:initialize_struct,
152
+ hash["left"],
153
+ hash["right"],
151
154
  hash["probe"],
152
155
  hash["index"],
153
156
  )
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: presto-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.11
4
+ version: 0.4.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sadayuki Furuhashi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-01-26 00:00:00.000000000 Z
11
+ date: 2016-01-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday