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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
-- test-run result file version 2
-- gh-4928. Test that transactions mixing local and global
-- space operations are replicated correctly.
env = require('test_run')
| ---
| ...
test_run = env.new()
| ---
| ...
bit = require('bit')
| ---
| ...
-- Init.
box.schema.user.grant('guest', 'replication')
| ---
| ...
_ = box.schema.space.create('glob')
| ---
| ...
_ = box.schema.space.create('loc', {is_local=true})
| ---
| ...
_ = box.space.glob:create_index('pk')
| ---
| ...
_ = box.space.loc:create_index('pk')
| ---
| ...
function gen_mixed_tx(i)\
box.begin()\
if bit.band(i, 1) ~= 0 then\
box.space.glob:insert{10 * i + 1}\
else\
box.space.loc:insert{10 * i + 1}\
end\
if bit.band(i, 2) ~= 0 then\
box.space.glob:insert{10 * i + 2}\
else\
box.space.loc:insert{10 * i + 2}\
end\
if bit.band(i, 4) ~= 0 then\
box.space.glob:insert{10 * i + 3}\
else\
box.space.loc:insert{10 * i + 3}\
end\
box.commit()\
end
| ---
| ...
test_run:cmd("create server replica with rpl_master=default,\
script='replication/replica.lua'")
| ---
| - true
| ...
test_run:cmd('start server replica')
| ---
| - true
| ...
test_run:wait_downstream(2, {status='follow'})
| ---
| - true
| ...
for i = 0, 7 do gen_mixed_tx(i) end
| ---
| ...
box.info.replication[2].status
| ---
| - null
| ...
vclock = box.info.vclock
| ---
| ...
vclock[0] = nil
| ---
| ...
test_run:wait_vclock("replica", vclock)
| ---
| ...
test_run:cmd('switch replica')
| ---
| - true
| ...
box.info.status
| ---
| - running
| ...
box.info.replication[1].upstream.status
| ---
| - follow
| ...
box.space.glob:select{}
| ---
| - - [11]
| - [22]
| - [31]
| - [32]
| - [43]
| - [51]
| - [53]
| - [62]
| - [63]
| - [71]
| - [72]
| - [73]
| ...
test_run:cmd('switch default')
| ---
| - true
| ...
-- Cleanup.
test_run:cmd('stop server replica')
| ---
| - true
| ...
test_run:cmd('delete server replica')
| ---
| - true
| ...
box.schema.user.revoke('guest', 'replication')
| ---
| ...
box.space.loc:drop()
| ---
| ...
box.space.glob:drop()
| ---
| ...
|