aboutsummaryrefslogtreecommitdiff
path: root/src/test/isolation/expected/vacuum-concurrent-drop.out
blob: 72d80a1de1e89105435228babb5cd62634fccd68 (plain)
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
Parsed test spec with 2 sessions

starting permutation: lock vac_specified drop_and_commit
step lock: 
	BEGIN;
	LOCK test1 IN SHARE MODE;

step vac_specified: VACUUM test1, test2; <waiting ...>
step drop_and_commit: 
	DROP TABLE test2;
	COMMIT;

WARNING:  skipping vacuum of "test2" --- relation no longer exists
step vac_specified: <... completed>

starting permutation: lock vac_all drop_and_commit
step lock: 
	BEGIN;
	LOCK test1 IN SHARE MODE;

step vac_all: VACUUM; <waiting ...>
step drop_and_commit: 
	DROP TABLE test2;
	COMMIT;

step vac_all: <... completed>

starting permutation: lock analyze_specified drop_and_commit
step lock: 
	BEGIN;
	LOCK test1 IN SHARE MODE;

step analyze_specified: ANALYZE test1, test2; <waiting ...>
step drop_and_commit: 
	DROP TABLE test2;
	COMMIT;

WARNING:  skipping analyze of "test2" --- relation no longer exists
step analyze_specified: <... completed>

starting permutation: lock analyze_all drop_and_commit
step lock: 
	BEGIN;
	LOCK test1 IN SHARE MODE;

step analyze_all: ANALYZE; <waiting ...>
step drop_and_commit: 
	DROP TABLE test2;
	COMMIT;

step analyze_all: <... completed>

starting permutation: lock vac_analyze_specified drop_and_commit
step lock: 
	BEGIN;
	LOCK test1 IN SHARE MODE;

step vac_analyze_specified: VACUUM ANALYZE test1, test2; <waiting ...>
step drop_and_commit: 
	DROP TABLE test2;
	COMMIT;

WARNING:  skipping vacuum of "test2" --- relation no longer exists
step vac_analyze_specified: <... completed>

starting permutation: lock vac_analyze_all drop_and_commit
step lock: 
	BEGIN;
	LOCK test1 IN SHARE MODE;

step vac_analyze_all: VACUUM ANALYZE; <waiting ...>
step drop_and_commit: 
	DROP TABLE test2;
	COMMIT;

step vac_analyze_all: <... completed>