lib/rasti/db/nql/nodes/comparisons/greater_than.rb in rasti-db-2.0.1 vs lib/rasti/db/nql/nodes/comparisons/greater_than.rb in rasti-db-2.1.0

- old
+ new

@@ -3,11 +3,11 @@ module NQL module Nodes module Comparisons class GreaterThan < Base - def filter_condition - field.identifier > argument.value + def filter_condition(collection_class) + attribute.identifier(collection_class) > argument.value end end end end \ No newline at end of file