aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/visitors/sqlite.rb
blob: 07a18fc2f58b827e3a6dcca1e3f8aea70e37ba93 (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, a
      end

      def visit_Arel_Nodes_SelectStatement o, a
        o.limit = Arel::Nodes::Limit.new(-1) if o.offset && !o.limit
        super
      end
    end
  end
end