If the given column has a getter method conflict, lookup the value directly in the values hash.
# File lib/sequel/plugins/column_conflicts.rb, line 89 def get_column_value(c) if col = model.get_column_conflicts[c] self[col] else super end end
If the given column has a setter method conflict, set the value directly in the values hash.
# File lib/sequel/plugins/column_conflicts.rb, line 98 def set_column_value(c, v) if col = model.set_column_conflicts[c] self[col] = v else super end end