Fix the method name for recusion

This commit is contained in:
Pratik Naik 2010-01-01 03:17:47 +05:30
parent 3c23b71a09
commit 141d3aff2f

@ -11,7 +11,7 @@ def build_from_hash(attributes, default_table)
if value.is_a?(Hash)
arel_table = Arel::Table.new(column, @engine)
build_predicate_from_hash(value, arel_table)
build_from_hash(value, arel_table)
else
column = column.to_s