Mercurial > urweb
annotate caching-tests/test.sql @ 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 |
rev | line source |
---|---|
ziv@2204 | 1 CREATE TABLE uw_Test_foo01(uw_id integer NOT NULL, uw_bar text NOT NULL, |
ziv@2204 | 2 PRIMARY KEY (uw_id) |
ziv@2204 | 3 |
ziv@2204 | 4 ); |
ziv@2204 | 5 |
ziv@2204 | 6 CREATE TABLE uw_Test_foo10(uw_id integer NOT NULL, uw_bar text NOT NULL, |
ziv@2204 | 7 PRIMARY KEY (uw_id) |
ziv@2204 | 8 |
ziv@2204 | 9 ); |
ziv@2204 | 10 |
ziv@2204 | 11 |