summaryrefslogtreecommitdiff
path: root/caching-tests
diff options
context:
space:
mode:
authorGravatar Ziv Scully <ziv@mit.edu>2014-05-31 03:08:16 -0400
committerGravatar Ziv Scully <ziv@mit.edu>2014-05-31 03:08:16 -0400
commit171e5ecea687a43033e92c98c0661cc161d50e4a (patch)
tree84fb602a1abddb351063d16cd44c147b0053aecc /caching-tests
parent77fa8d45d3bcc722b25e93a8c24081c74f3f4709 (diff)
Cleans up interface (it's now a command line option) and renames project to "sqlcache" in the all-one-word style. Still has issues to do with concurrency, retrying transactions, and foreign function calls that either rely on state or have side effects.
Diffstat (limited to 'caching-tests')
-rw-r--r--caching-tests/test.ur1
1 files changed, 0 insertions, 1 deletions
diff --git a/caching-tests/test.ur b/caching-tests/test.ur
index d13379a8..a99a387b 100644
--- a/caching-tests/test.ur
+++ b/caching-tests/test.ur
@@ -2,7 +2,6 @@ table foo01 : {Id : int, Bar : string} PRIMARY KEY Id
table foo10 : {Id : int, Bar : string} PRIMARY KEY Id
fun flush01 () : transaction page =
- dml (INSERT INTO foo01 (Id, Bar) VALUES (42, "baz01"));
dml (UPDATE foo01 SET Bar = "baz01" WHERE Id = 42);
return <xml><body>
Flushed 1!