aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/engines/sql/compilers/mysql_compiler.rb
blob: cb12e7377aab9d8ba16488ab84ac3dbfc58b54cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module Arel
  module SqlCompiler
    class MySQLCompiler < GenericCompiler
      def limited_update_conditions(conditions, taken)
        conditions << " LIMIT #{taken}"
        conditions
      end
    end
  end
end