Where clause "not in" with an empty array always returns false
Author: germancolladoCreated May 7, 2021Updated Feb 17, 2022
Version: 2.1.12
await db
.select(table.id)
.from(table)
.where(
lf.op.not(
table.id.in([])
)
)
.exec()Source: google/lovefield