comparison tests/t_t.ur @ 1467:8fce85939259

Fix bug with string literals in unAs
author Adam Chlipala <adam@chlipala.net>
date Mon, 30 May 2011 09:31:50 -0400
parents e2d7bd41f527
children
comparison
equal deleted inserted replaced
1466:e2d7bd41f527 1467:8fce85939259
1 table t : {A : int} 1 table t : {A : int, B : string}
2 2
3 task initialize = fn () => dml (UPDATE t SET A = A + 1 WHERE TRUE) 3 task initialize = fn () => dml (UPDATE t SET A = A + 1 WHERE TRUE);
4 dml (UPDATE t SET B = 'q' WHERE TRUE)