Skip to content

Feature implicit and

Chosson Ulysse requested to merge FEATURE_implicit_and into main

[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 a AND 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)

Merge request reports