~drizzle-trunk/drizzle/development

1
2
3
4
5
6
7
# Test that WAIT is working, if for some reason the results are wrong that
# means that for some reason EXECUTE..WAIT is busted on the
# platform/everywhere. 
CREATE TABLE A (A SERIAL);
execute "insert into a VALUES ()" CONCURRENT WAIT;
SELECT a from a;
DROP TABLE A;