Feature implicit and
[0.34.0] - 2022-03-10
Added
- Add a function the detect implicit and in where condition and replace all
WHERE
(except the first) by aAND
in the request.
Removed
- Remove
aand()
its now outdated. Make
.where(lambda data: data.name == "toto")
.where(lambda data: data.mass > 5)
instead of
.where(lambda data: data.name = "toto")
.aand(lambda data: data. mass > 5)