We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2059894 commit aedd0cbCopy full SHA for aedd0cb
src/libs/GenerateSqlFromPlan.ts
@@ -28,7 +28,7 @@ export default function generateSqlFromPlan(
28
if (plan.where) {
29
return qb(dialect)
30
.table(plan.table)
31
- .where(plan.where)
+ .where(convertUnsupportedValue(plan.where, dialect))
32
.delete()
33
.toRawSQL();
34
}
0 commit comments