aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/visitors/sqlite.rb
blob: 2a509e95b59ed6b2aaace37b14912014367fb9d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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