Mercurial > urweb
annotate caching-tests/test.sql @ 2204:01c8aceac480
Finishes initial prototype, caching parameterless pages with table-match-based invalidation. Still has problems parsing non-Postgres SQL dialects properly.
author | Ziv Scully <ziv@mit.edu> |
---|---|
date | Tue, 27 May 2014 21:14:13 -0400 |
parents | |
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 |