mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
27 lines
609 B
Ruby
27 lines
609 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Arel # :nodoc: all
|
|
module Visitors
|
|
class SQLite < Arel::Visitors::ToSql
|
|
private
|
|
|
|
# Locks are not supported in SQLite
|
|
def visit_Arel_Nodes_Lock(o, collector)
|
|
collector
|
|
end
|
|
|
|
def visit_Arel_Nodes_SelectStatement(o, collector)
|
|
o.limit = Arel::Nodes::Limit.new(-1) if o.offset && !o.limit
|
|
super
|
|
end
|
|
|
|
def visit_Arel_Nodes_True(o, collector)
|
|
collector << "1"
|
|
end
|
|
|
|
def visit_Arel_Nodes_False(o, collector)
|
|
collector << "0"
|
|
end
|
|
end
|
|
end
|
|
end
|