Class: Arel::Visitors::HSQLDB

Inherits:
ToSql
  • Object
show all
Defined in:
lib/arel/visitors/hsqldb.rb

Direct Known Subclasses

H2

Instance Method Summary collapse

Instance Method Details

#visit_Arel_Nodes_SelectStatement(o) ⇒ Object



6
7
8
9
# File 'lib/arel/visitors/hsqldb.rb', line 6

def visit_Arel_Nodes_SelectStatement(o, *)
  o.limit ||= Arel::Nodes::Limit.new(0) if o.offset
  super
end