Created
August 25, 2009 13:40
-
-
Save sheldonh/174696 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- On node writer: | |
-- --------------- | |
DROP TABLE test; | |
CREATE TABLE test ( | |
name VARCHAR(255) | |
); | |
set autocommit=0; | |
set transaction isolation level read committed; | |
begin; | |
-- On node reader: | |
-- --------------- | |
set autocommit=0; | |
set transaction isolation level read committed; | |
begin; | |
-- On node writer: | |
-- --------------- | |
INSERT INTO test VALUES ('bob'); | |
-- On node reader: | |
-- --------------- | |
SELECT * from test; | |
-- returns the row with bob in it!!! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment