Closed alexowens90 closed 2 months ago
Fixes #1818
Previous implementation did not work due to implementation of __eq__ on the ExpressionNode class being needed to behave not as a check but as a modifier, so that filters like this work:
__eq__
ExpressionNode
q = QueryBuilder() q = q[q["col"] == 0]
Reference Issues/PRs
Fixes #1818
Previous implementation did not work due to implementation of
__eq__
on theExpressionNode
class being needed to behave not as a check but as a modifier, so that filters like this work: