# File lib/criteria/sql.rb, line 338 def _translate_fn(op) case op when :&; "AND" when :|; "OR" when :==; "=" when :nil?; "IS NULL" else; op end end