-
Notifications
You must be signed in to change notification settings - Fork 131
Closed
Labels
for: external-projectFor an external project and not something we can fixFor an external project and not something we can fixtype: bugA general bugA general bug
Milestone
Description
This code:
client.delete().from("tab").matching(where("id").notIn(1, 2))
generates SQL statement without any conditions:
DELETE FROM tab
When combined with other conditions, an incorrect SQL statement is generated:
client.delete().from("tab").matching(where("pole").`is`(1).and("id").notIn(1, 2))
generates:
DELETE FROM tab WHERE tab.pole = $1 AND
The IN
comparator is working fine.
Metadata
Metadata
Assignees
Labels
for: external-projectFor an external project and not something we can fixFor an external project and not something we can fixtype: bugA general bugA general bug