diff options
author | Ziv Scully <ziv@mit.edu> | 2015-06-30 01:56:22 -0700 |
---|---|---|
committer | Ziv Scully <ziv@mit.edu> | 2015-06-30 01:56:22 -0700 |
commit | fdcc98562df1f37600d9b944371adcb08c3741f0 (patch) | |
tree | 49404a933ad92a87a7cde209e162af2c0204ba87 /caching-tests | |
parent | aa2da68f6bfc3649fcb43afa1b88909ef278ac60 (diff) |
Major DNF-calculation performance decrapification.
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 ba3a337d..6721a464 100644 --- a/caching-tests/test.ur +++ b/caching-tests/test.ur @@ -15,7 +15,7 @@ fun cache id = fun flush id = dml (UPDATE tab SET Val = 42 - WHERE Id = {[id]} OR Id = {[id + 1]}); + WHERE Id = {[id]} OR Id = {[id - 1]} OR Id = {[id + 1]}); return <xml><body> Changed {[id]}! </body></xml> |