class Arel::SqlCompiler::Mysql2Compiler

Public Instance Methods

limited_update_conditions(conditions, taken) click to toggle source
# File lib/arel/engines/sql/compilers/mysql2_compiler.rb, line 4
def limited_update_conditions(conditions, taken)
  conditions << " LIMIT #{taken}"
  conditions
end