diff caching-tests/test.ur @ 2209:0ca11d57c175

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.
author Ziv Scully <ziv@mit.edu>
date Sat, 31 May 2014 03:08:16 -0400
parents 01c8aceac480
children 365727ff68f4
line wrap: on
line diff
--- a/caching-tests/test.ur	Fri May 30 12:00:44 2014 -0400
+++ b/caching-tests/test.ur	Sat May 31 03:08:16 2014 -0400
@@ -2,7 +2,6 @@
 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!