File: init_storage.result

package info (click to toggle)
tarantool 2.6.0-1.4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 85,412 kB
  • sloc: ansic: 513,775; cpp: 69,493; sh: 25,650; python: 19,190; perl: 14,973; makefile: 4,178; yacc: 1,329; sql: 1,074; pascal: 620; ruby: 190; awk: 18; lisp: 7
file content (134 lines) | stat: -rw-r--r-- 1,835 bytes parent folder | download | duplicates (5)
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
box.schema.user.grant('guest', 'replication')
---
...
-------------------------------------------------------------
gh-484: JOIN doesn't save data to snapshot with TREE index
-------------------------------------------------------------
space = box.schema.space.create('test', {id =  42})
---
...
index = space:create_index('primary', { type = 'tree'})
---
...
for k = 1, 9 do space:insert{k, k*k} end
---
...
box.space.test:select()
---
- - [1, 1]
  - [2, 4]
  - [3, 9]
  - [4, 16]
  - [5, 25]
  - [6, 36]
  - [7, 49]
  - [8, 64]
  - [9, 81]
...
box.space.test:select()
---
- - [1, 1]
  - [2, 4]
  - [3, 9]
  - [4, 16]
  - [5, 25]
  - [6, 36]
  - [7, 49]
  - [8, 64]
  - [9, 81]
...
-------------------------------------------------------------
replica test 2 (must be ok)
-------------------------------------------------------------
for k = 10, 19 do box.space[42]:insert{k, k*k*k} end
---
...
for k = 20, 29 do box.space[42]:upsert({k}, {}) end
---
...
space = box.space.test
---
...
space:get{1}
---
- [1, 1]
...
space:get{2}
---
- [2, 4]
...
space:get{3}
---
- [3, 9]
...
space:get{4}
---
- [4, 16]
...
space:get{5}
---
- [5, 25]
...
space:get{6}
---
- [6, 36]
...
space:get{7}
---
- [7, 49]
...
space:get{8}
---
- [8, 64]
...
space:get{9}
---
- [9, 81]
...
space:get{10}
---
- [10, 1000]
...
space:get{11}
---
- [11, 1331]
...
space:get{12}
---
- [12, 1728]
...
space:get{13}
---
- [13, 2197]
...
space:get{14}
---
- [14, 2744]
...
space:get{15}
---
- [15, 3375]
...
space:get{16}
---
- [16, 4096]
...
space:get{17}
---
- [17, 4913]
...
space:get{18}
---
- [18, 5832]
...
space:get{19}
---
- [19, 6859]
...
-------------------------------------------------------------
reconnect on JOIN/SUBSCRIBE
-------------------------------------------------------------
waiting reconnect on JOIN...
ok
waiting reconnect on SUBSCRIBE...
ok