aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/engines/sql/compilers/sqlite_compiler.rb
blob: c2f78cd2350503c50730abfc639ebc0ea8573573 (plain) (blame)
1
2
3
4
5
6
7
8
9
module Arel
  module SqlCompiler
    class SQLiteCompiler < GenericCompiler
      def locked
        nil
      end
    end
  end
end