aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/engines/sql/compilers/mysql_compiler.rb
blob: ba3312ba721a1e3ffc33ea22ee3ef994fcb99de6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module Arel
  module SqlCompiler
    class MySQLCompiler < GenericCompiler
      def limited_update_conditions(conditions)
        conditions
      end
    end
  end
end