mirror of https://github.com/citusdata/citus.git
43 lines
874 B
Plaintext
43 lines
874 B
Plaintext
Parsed test spec with 2 sessions
|
|
|
|
starting permutation: s1-begin s1-insert s2-vacuum-analyze s2-wait s1-commit
|
|
create_distributed_table
|
|
---------------------------------------------------------------------
|
|
|
|
(1 row)
|
|
|
|
step s1-begin:
|
|
BEGIN;
|
|
|
|
step s1-insert:
|
|
INSERT INTO test_insert_vacuum VALUES(1, 1);
|
|
|
|
step s2-vacuum-analyze:
|
|
VACUUM ANALYZE test_insert_vacuum;
|
|
<waiting ...>
|
|
step s2-vacuum-analyze: <... completed>
|
|
step s2-wait:
|
|
step s1-commit:
|
|
COMMIT;
|
|
|
|
|
|
starting permutation: s1-begin s1-insert s2-vacuum-full s1-commit
|
|
create_distributed_table
|
|
---------------------------------------------------------------------
|
|
|
|
(1 row)
|
|
|
|
step s1-begin:
|
|
BEGIN;
|
|
|
|
step s1-insert:
|
|
INSERT INTO test_insert_vacuum VALUES(1, 1);
|
|
|
|
step s2-vacuum-full:
|
|
VACUUM FULL test_insert_vacuum;
|
|
<waiting ...>
|
|
step s1-commit:
|
|
COMMIT;
|
|
|
|
step s2-vacuum-full: <... completed>
|