deploy - update fixed data works in test

This commit is contained in:
Jan Prochazka
2021-11-27 18:10:34 +01:00
parent 40d53275e3
commit 3297253906
5 changed files with 56 additions and 12 deletions

View File

@@ -623,7 +623,7 @@ export class SqlDumper implements AlterProcessor {
was = true;
this.put('^update %f ^set ', table);
this.putCollection(', ', updated, col => this.put('%i=%v', col, row[col]));
this.put(' ^ where ');
this.put(' ^where ');
this.putCollection(' ^and ', key, col => this.put('%i=%v', col, row[col]));
}
} else {