1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
# name: test/sql/transactions/test_basic_transactions.test
# description: Simple table creation transaction tests
# group: [transactions]
# start transactions
statement ok con1
BEGIN TRANSACTION
statement ok con2
BEGIN TRANSACTION
# create a table on connection one
statement ok con1
CREATE TABLE integers(i INTEGER)
# connection one should be able to query the table
query I con1
SELECT * FROM integers
----
# connection two should not be able to
statement error con2
SELECT * FROM integers
----
<REGEX>:.*Catalog Error.*Table.*not exist.*
# if we rollback, nobody should be able to query the table
statement ok con1
ROLLBACK
statement error con1
SELECT * FROM integers
----
<REGEX>:.*Catalog Error.*Table.*not exist.*
statement error con2
SELECT * FROM integers
----
<REGEX>:.*Catalog Error.*Table.*not exist.*
# now if we commit the table
statement ok con1
BEGIN TRANSACTION
statement ok con1
CREATE TABLE integers(i INTEGER)
statement ok con1
COMMIT
# con two STILL should not see it because it was started before the
# transaction committed
statement error con2
SELECT * FROM integers
----
<REGEX>:.*Catalog Error.*Table.*not exist.*
# but if we rollback and start a new transaction it should see it
statement ok con2
ROLLBACK
query I con2
SELECT * FROM integers
----
# serialize conflict
# start transactions
statement ok con1
BEGIN TRANSACTION
statement ok con2
BEGIN TRANSACTION
# create a table on connection one
statement ok con1
CREATE TABLE integers2(i INTEGER)
# create a table on connection two with the same name
statement error con1
CREATE TABLE integers2(i INTEGER)
----
<REGEX>:.*Catalog Error.*Table.*already exists.*
|