Replaces the in/not in expression with a noncontingent expression (always true or always false) depending on the original operator.
in
not in
This is how Knex.js, PrismaORM, Laravel, and SQLAlchemy handle in () and not in ().
in ()
not in ()
See pushValueIntoList for an alternative strategy.
Replaces the
in
/not in
expression with a noncontingent expression (always true or always false) depending on the original operator.This is how Knex.js, PrismaORM, Laravel, and SQLAlchemy handle
in ()
andnot in ()
.See pushValueIntoList for an alternative strategy.