sql-parser-vlad 0.0.9 → 0.0.10

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.
@@ -209,6 +209,10 @@ module SQLParser
209
209
  aggregate('COUNT', o)
210
210
  end
211
211
 
212
+ def visit_Length(o)
213
+ aggregate('LENGTH', o)
214
+ end
215
+
212
216
  def visit_CrossJoin(o)
213
217
  "#{visit(o.left)} CROSS JOIN #{visit(o.right)}"
214
218
  end
@@ -331,6 +331,10 @@ module SQLParser
331
331
 
332
332
  end
333
333
 
334
+
335
+ class Length < Aggregate
336
+ end
337
+
334
338
  class Sum < Aggregate
335
339
  end
336
340
 
@@ -1,5 +1,5 @@
1
1
  module SQLParser
2
2
 
3
- VERSION = '0.0.9'
3
+ VERSION = '0.0.10'
4
4
 
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sql-parser-vlad
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dray Lacy