diff options
author | Ziv Scully <ziv@mit.edu> | 2015-07-06 01:31:04 -0700 |
---|---|---|
committer | Ziv Scully <ziv@mit.edu> | 2015-07-06 01:31:04 -0700 |
commit | f9021ccf1a76dd7e570061849acdec515b5be790 (patch) | |
tree | f1fae1f76ca7a792395f559874a6c68854d6abb1 /caching-tests | |
parent | 1622d36926c950ed34757dea78edfb4cd3463578 (diff) |
Only use string (rather than numeric, etc.) primitives in parsed SQL statements.
Diffstat (limited to 'caching-tests')
-rw-r--r-- | caching-tests/test.ur | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/caching-tests/test.ur b/caching-tests/test.ur index 6721a464..510a5524 100644 --- a/caching-tests/test.ur +++ b/caching-tests/test.ur @@ -14,7 +14,7 @@ fun cache id = fun flush id = dml (UPDATE tab - SET Val = 42 + SET Id = 29, Val = 42 WHERE Id = {[id]} OR Id = {[id - 1]} OR Id = {[id + 1]}); return <xml><body> Changed {[id]}! |