diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-01-17 23:56:03 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-01-17 23:56:03 +0100 |
commit | 86cd17e265a048801e827a6f2c26e60e2ec7d17b (patch) | |
tree | 79ea61d59b1c0d3b3832e1a1e432d783f516bec6 /src | |
parent | 788fd67984a546c58fca4cea62627fa2d763964f (diff) |
fix SQL
Diffstat (limited to 'src')
-rwxr-xr-x | src/auditor/test-auditor.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/auditor/test-auditor.sh b/src/auditor/test-auditor.sh index b46f022f1..d0c4eaf12 100755 --- a/src/auditor/test-auditor.sh +++ b/src/auditor/test-auditor.sh @@ -741,7 +741,7 @@ fi echo PASS # Undo database modification (exchange always has account #2) -echo "UPDATE app_banktransaction SET debit_account_id=$OLD_ACC,credit_account_id=2,subject=$OLD_SUBJECT WHERE id=$OLD_ID;" | psql -Aqt $DB +echo "UPDATE app_banktransaction SET debit_account_id=$OLD_ACC,credit_account_id=2,subject='$OLD_SUBJECT' WHERE id=$OLD_ID;" | psql -Aqt $DB } |