checking filter on change

This commit is contained in:
Jan Prochazka
2020-03-12 18:14:40 +01:00
parent f86ad6ba1e
commit e8733c6587
3 changed files with 45 additions and 12 deletions

View File

@@ -27,7 +27,7 @@ export function dumpSqlSelect(dmp: SqlDumper, select: Select) {
dmp.put('^from ');
dumpSqlFromDefinition(dmp, select.from);
if (select.where) {
dmp.put('&n^where');
dmp.put('&n^where ');
dumpSqlCondition(dmp, select.where);
dmp.put('&n');
}