Sha256: 212fae0be8ff7b05ec7d217e9e0421b1e22861eccea70fb64ff2df8081e5f481
Contents?: true
Size: 329 Bytes
Versions: 88
Compression:
Stored size: 329 Bytes
Contents
module Arel module Visitors class SQLite < Arel::Visitors::ToSql private # Locks are not supported in SQLite def visit_Arel_Nodes_Lock o end def visit_Arel_Nodes_SelectStatement o o.limit = Arel::Nodes::Limit.new(-1) if o.offset && !o.limit super end end end end
Version data entries
88 entries across 70 versions & 13 rubygems