It would be helpful if we could push and pop where statements. ``` qb.where({foo:'bar'} qb.pushWhere() qb.or_where({v1: 1}) qb.or_where({v2: 2}) qb.popWhere() ``` ```sql where foo='bar' and (v1=1 or v2=2) ```