forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexecutor_txn_test.go
800 lines (724 loc) · 28.5 KB
/
executor_txn_test.go
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
// Copyright 2022 PingCAP, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package executor_test
import (
"context"
"fmt"
"strconv"
"strings"
"testing"
"time"
"github.com/pingcap/tidb/executor"
"github.com/pingcap/tidb/sessionctx/binloginfo"
"github.com/pingcap/tidb/testkit"
"github.com/pingcap/tipb/go-binlog"
"github.com/stretchr/testify/require"
"google.golang.org/grpc"
)
func TestInvalidReadTemporaryTable(t *testing.T) {
store := testkit.CreateMockStoreWithSchemaLease(t, time.Second)
tk := testkit.NewTestKit(t, store)
// For mocktikv, safe point is not initialized, we manually insert it for snapshot to use.
safePointName := "tikv_gc_safe_point"
safePointValue := "20160102-15:04:05 -0700"
safePointComment := "All versions after safe point can be accessed. (DO NOT EDIT)"
updateSafePoint := fmt.Sprintf(`INSERT INTO mysql.tidb VALUES ('%[1]s', '%[2]s', '%[3]s')
ON DUPLICATE KEY
UPDATE variable_value = '%[2]s', comment = '%[3]s'`, safePointName, safePointValue, safePointComment)
tk.MustExec(updateSafePoint)
tk.MustExec("use test")
tk.MustExec("drop table if exists tmp1")
tk.MustExec("create global temporary table tmp1 " +
"(id int not null primary key, code int not null, value int default null, unique key code(code))" +
"on commit delete rows")
tk.MustExec("use test")
tk.MustExec("drop table if exists tmp2")
tk.MustExec("create temporary table tmp2 (id int not null primary key, code int not null, value int default null, unique key code(code));")
tk.MustExec("create table tmp3 (id int not null primary key, code int not null, value int default null, unique key code(code));")
tk.MustExec("create table tmp4 (id int not null primary key, code int not null, value int default null, unique key code(code));")
tk.MustExec("create temporary table tmp5(id int);")
tk.MustExec("create table tmp6 (id int primary key);")
// sleep 1us to make test stale
time.Sleep(time.Microsecond)
queries := []struct {
sql string
}{
{
sql: "select * from tmp1 where id=1",
},
{
sql: "select * from tmp1 where code=1",
},
{
sql: "select * from tmp1 where id in (1, 2, 3)",
},
{
sql: "select * from tmp1 where code in (1, 2, 3)",
},
{
sql: "select * from tmp1 where id > 1",
},
{
sql: "select /*+use_index(tmp1, code)*/ * from tmp1 where code > 1",
},
{
sql: "select /*+use_index(tmp1, code)*/ code from tmp1 where code > 1",
},
{
sql: "select /*+ use_index_merge(tmp1, primary, code) */ * from tmp1 where id > 1 or code > 2",
},
}
addStaleReadToSQL := func(sql string) string {
idx := strings.Index(sql, " where ")
if idx < 0 {
return ""
}
return sql[0:idx] + " as of timestamp NOW(6)" + sql[idx:]
}
genLocalTemporarySQL := func(sql string) string {
return strings.Replace(sql, "tmp1", "tmp2", -1)
}
for _, query := range queries {
localSQL := genLocalTemporarySQL(query.sql)
queries = append(queries, struct{ sql string }{sql: localSQL})
}
for _, query := range queries {
sql := addStaleReadToSQL(query.sql)
if sql != "" {
tk.MustGetErrMsg(sql, "can not stale read temporary table")
}
}
tk.MustExec("start transaction read only as of timestamp NOW(6)")
for _, query := range queries {
tk.MustGetErrMsg(query.sql, "can not stale read temporary table")
}
tk.MustExec("commit")
for _, query := range queries {
tk.MustQuery(query.sql)
}
// Test normal table when local temporary exits.
tk.MustExec("insert into tmp6 values(1);")
time.Sleep(100 * time.Millisecond)
tk.MustExec("set @a=now(6);")
tk.MustExec("drop table tmp6")
tk.MustExec("create table tmp6 (id int primary key);")
tk.MustQuery("select * from tmp6 as of timestamp(@a) where id=1;").Check(testkit.Rows("1"))
tk.MustQuery("select * from tmp4 as of timestamp(@a), tmp3 as of timestamp(@a) where tmp3.id=1;")
tk.MustGetErrMsg("select * from tmp4 as of timestamp(@a), tmp2 as of timestamp(@a) where tmp2.id=1;", "can not stale read temporary table")
tk.MustExec("set transaction read only as of timestamp NOW(6)")
tk.MustExec("start transaction")
for _, query := range queries {
tk.MustGetErrMsg(query.sql, "can not stale read temporary table")
}
tk.MustExec("commit")
for _, query := range queries {
tk.MustExec(query.sql)
}
tk.MustExec("set @@tidb_snapshot=NOW(6)")
for _, query := range queries {
// forbidden historical read local temporary table
if strings.Contains(query.sql, "tmp2") {
tk.MustGetErrMsg(query.sql, "can not read local temporary table when 'tidb_snapshot' is set")
continue
}
// Will success here for compatibility with some tools like dumping
tk.MustQuery(query.sql).Check(testkit.Rows())
}
}
func TestInvalidReadCacheTable(t *testing.T) {
store := testkit.CreateMockStore(t)
tk := testkit.NewTestKit(t, store)
// For mocktikv, safe point is not initialized, we manually insert it for snapshot to use.
safePointName := "tikv_gc_safe_point"
safePointValue := "20160102-15:04:05 -0700"
safePointComment := "All versions after safe point can be accessed. (DO NOT EDIT)"
updateSafePoint := fmt.Sprintf(`INSERT INTO mysql.tidb VALUES ('%[1]s', '%[2]s', '%[3]s')
ON DUPLICATE KEY
UPDATE variable_value = '%[2]s', comment = '%[3]s'`, safePointName, safePointValue, safePointComment)
tk.MustExec(updateSafePoint)
tk.MustExec("use test")
tk.MustExec("drop table if exists cache_tmp1")
tk.MustExec("create table cache_tmp1 " +
"(id int not null primary key, code int not null, value int default null, unique key code(code))")
tk.MustExec("alter table cache_tmp1 cache")
tk.MustExec("drop table if exists cache_tmp2")
tk.MustExec("create table cache_tmp2 (id int not null primary key, code int not null, value int default null, unique key code(code));")
tk.MustExec("alter table cache_tmp2 cache")
tk.MustExec("drop table if exists cache_tmp3 , cache_tmp4, cache_tmp5")
tk.MustExec("create table cache_tmp3 (id int not null primary key, code int not null, value int default null, unique key code(code));")
tk.MustExec("create table cache_tmp4 (id int not null primary key, code int not null, value int default null, unique key code(code));")
tk.MustExec("create table cache_tmp5 (id int primary key);")
// sleep 1us to make test stale
time.Sleep(time.Microsecond)
queries := []struct {
sql string
}{
{
sql: "select * from cache_tmp1 where id=1",
},
{
sql: "select * from cache_tmp1 where code=1",
},
{
sql: "select * from cache_tmp1 where id in (1, 2, 3)",
},
{
sql: "select * from cache_tmp1 where code in (1, 2, 3)",
},
{
sql: "select * from cache_tmp1 where id > 1",
},
{
sql: "select /*+use_index(cache_tmp1, code)*/ * from cache_tmp1 where code > 1",
},
{
sql: "select /*+use_index(cache_tmp1, code)*/ code from cache_tmp1 where code > 1",
},
}
addStaleReadToSQL := func(sql string) string {
idx := strings.Index(sql, " where ")
if idx < 0 {
return ""
}
return sql[0:idx] + " as of timestamp NOW(6)" + sql[idx:]
}
for _, query := range queries {
sql := addStaleReadToSQL(query.sql)
if sql != "" {
tk.MustGetErrMsg(sql, "can not stale read cache table")
}
}
tk.MustExec("start transaction read only as of timestamp NOW(6)")
for _, query := range queries {
tk.MustGetErrMsg(query.sql, "can not stale read cache table")
}
tk.MustExec("commit")
for _, query := range queries {
tk.MustQuery(query.sql)
}
// Test normal table when cache table exits.
tk.MustExec("insert into cache_tmp5 values(1);")
time.Sleep(100 * time.Millisecond)
tk.MustExec("set @a=now(6);")
tk.MustExec("drop table cache_tmp5")
tk.MustExec("create table cache_tmp5 (id int primary key);")
tk.MustQuery("select * from cache_tmp5 as of timestamp(@a) where id=1;").Check(testkit.Rows("1"))
tk.MustQuery("select * from cache_tmp4 as of timestamp(@a), cache_tmp3 as of timestamp(@a) where cache_tmp3.id=1;")
tk.MustGetErrMsg("select * from cache_tmp4 as of timestamp(@a), cache_tmp2 as of timestamp(@a) where cache_tmp2.id=1;", "can not stale read cache table")
tk.MustExec("set transaction read only as of timestamp NOW(6)")
tk.MustExec("start transaction")
for _, query := range queries {
tk.MustGetErrMsg(query.sql, "can not stale read cache table")
}
tk.MustExec("commit")
for _, query := range queries {
tk.MustExec(query.sql)
}
tk.MustExec("set @@tidb_snapshot=NOW(6)")
for _, query := range queries {
// enable historical read cache table
tk.MustExec(query.sql)
}
}
func TestTxnSavepoint0(t *testing.T) {
store := testkit.CreateMockStore(t)
tk := testkit.NewTestKit(t, store)
tk.MustExec("use test")
tk.MustExec("create table t(id int, a int, unique index idx(id))")
cases := []struct {
sql string
sps []string
err string
}{
{"set autocommit=1", nil, ""},
{"delete from t", nil, ""},
{"savepoint s1", nil, ""},
{"rollback to s1", nil, "[executor:1305]SAVEPOINT s1 does not exist"},
{"begin", nil, ""},
{"savepoint s1", []string{"s1"}, ""},
{"savepoint s2", []string{"s1", "s2"}, ""},
{"savepoint s3", []string{"s1", "s2", "s3"}, ""},
{"savepoint S1", []string{"s2", "s3", "s1"}, ""},
{"rollback to S3", []string{"s2", "s3"}, ""},
{"rollback to S1", []string{"s2", "s3"}, "[executor:1305]SAVEPOINT S1 does not exist"},
{"rollback to s1", []string{"s2", "s3"}, "[executor:1305]SAVEPOINT s1 does not exist"},
{"rollback to S3", []string{"s2", "s3"}, ""},
{"rollback to S2", []string{"s2"}, ""},
{"rollback to S2", []string{"s2"}, ""},
{"rollback", nil, ""},
{"set autocommit=1", nil, ""},
{"savepoint s1", nil, ""},
{"set autocommit=0", nil, ""},
{"savepoint s1", []string{"s1"}, ""},
{"savepoint s2", []string{"s1", "s2"}, ""},
{"savepoint S1", []string{"s2", "s1"}, ""},
{"set autocommit=1", nil, ""},
{"savepoint s1", nil, ""},
{"set autocommit=0", nil, ""},
{"begin", nil, ""},
{"savepoint s1", []string{"s1"}, ""},
{"set autocommit=1", nil, ""},
{"set autocommit=0", nil, ""},
{"savepoint s1", []string{"s1"}, ""},
{"commit", nil, ""},
{"begin", nil, ""},
{"savepoint s1", []string{"s1"}, ""},
{"savepoint s2", []string{"s1", "s2"}, ""},
{"savepoint s3", []string{"s1", "s2", "s3"}, ""},
{"release savepoint s2", []string{"s1"}, ""},
{"rollback to S2", []string{"s1"}, "[executor:1305]SAVEPOINT S2 does not exist"},
{"release savepoint s3", []string{"s1"}, "[executor:1305]SAVEPOINT s3 does not exist"},
{"savepoint s2", []string{"s1", "s2"}, ""},
{"release savepoint s1", nil, ""},
{"release savepoint s1", nil, "[executor:1305]SAVEPOINT s1 does not exist"},
{"release savepoint S2", nil, "[executor:1305]SAVEPOINT S2 does not exist"},
{"commit", nil, ""},
}
txnModes := []string{"optimistic", "pessimistic", ""}
for _, txnMode := range txnModes {
tk.MustExec(fmt.Sprintf("set session tidb_txn_mode='%v';", txnMode))
for idx, ca := range cases {
comment := fmt.Sprintf("txn_mode: %v,idx: %v, %#v", txnMode, idx, ca)
_, err := tk.Exec(ca.sql)
if ca.err == "" {
require.NoError(t, err, comment)
} else {
require.Error(t, err, comment)
require.Equal(t, ca.err, err.Error(), comment)
}
txnCtx := tk.Session().GetSessionVars().TxnCtx
require.Equal(t, len(ca.sps), len(txnCtx.Savepoints), comment)
for i, sp := range ca.sps {
require.Equal(t, sp, txnCtx.Savepoints[i].Name, comment)
}
}
}
}
func TestTxnSavepoint1(t *testing.T) {
store := testkit.CreateMockStore(t)
tk := testkit.NewTestKit(t, store)
tk.MustExec("use test")
tk.MustExec("create table t(id int, a int, unique index idx(id))")
cases := []struct {
sql string
result []string
err string
}{
// execute savepoint not in transaction
{sql: "commit"},
{sql: "savepoint s1"},
{sql: "insert into t values (3, 3)"},
{sql: "rollback to s1", err: "[executor:1305]SAVEPOINT s1 does not exist"},
{sql: "delete from t"},
{sql: "begin"},
{sql: "release savepoint x", err: "[executor:1305]SAVEPOINT x does not exist"},
{sql: "savepoint s1"},
{sql: "savepoint s2"},
{sql: "savepoint s3"},
{sql: "savepoint s4"},
{sql: "release savepoint s1"},
{sql: "rollback to s1", err: "[executor:1305]SAVEPOINT s1 does not exist"},
{sql: "rollback to s2", err: "[executor:1305]SAVEPOINT s2 does not exist"},
{sql: "rollback to s3", err: "[executor:1305]SAVEPOINT s3 does not exist"},
{sql: "rollback to savepoint s4", err: "[executor:1305]SAVEPOINT s4 does not exist"},
{sql: "rollback"},
{sql: "begin"},
{sql: "insert into t values (1, 1), (2, 2)"},
{sql: "savepoint s1"},
{sql: "insert into t values (3, 3)"},
{sql: "savepoint s2"},
{sql: "select * from t order by id", result: []string{"1 1", "2 2", "3 3"}},
{sql: "rollback to s1"},
{sql: "select * from t order by id", result: []string{"1 1", "2 2"}},
{sql: "insert into t values (3, 4), (4, 4)"},
{sql: "select * from t order by id", result: []string{"1 1", "2 2", "3 4", "4 4"}},
{sql: "rollback to s1"},
{sql: "insert into t values (3, 5)"},
{sql: "select * from t order by id", result: []string{"1 1", "2 2", "3 5"}},
{sql: "rollback to s2", err: "[executor:1305]SAVEPOINT s2 does not exist"},
{sql: "rollback to s1"},
{sql: "select * from t order by id", result: []string{"1 1", "2 2"}},
{sql: "commit"},
{sql: "select * from t order by id", result: []string{"1 1", "2 2"}},
{sql: "begin"},
{sql: "insert into t values (1, 1), (3, 3) on duplicate key update a=a+1"},
{sql: "select * from t order by id", result: []string{"1 2", "2 2", "3 3"}},
{sql: "savepoint s1"},
{sql: "update t set a=a+1 where id in (1, 2)"},
{sql: "rollback to s1"},
{sql: "insert into t values (4, 4)"},
{sql: "commit"},
{sql: "select * from t order by id", result: []string{"1 2", "2 2", "3 3", "4 4"}},
{sql: "delete from t"},
{sql: "begin"},
{sql: "savepoint s1"},
{sql: "insert into t values (1, 1)"},
{sql: "savepoint s2"},
{sql: "insert into t values (2, 2)"},
{sql: "savepoint s1"},
{sql: "insert into t values (3, 3)"},
{sql: "rollback to s1"},
{sql: "select * from t order by id", result: []string{"1 1", "2 2"}},
{sql: "commit"},
{sql: "select * from t order by id", result: []string{"1 1", "2 2"}},
// test for savepoint name case
{sql: "delete from t"},
{sql: "begin"},
{sql: "savepoint s1"},
{sql: "insert into t values (1, 1)"},
{sql: "release savepoint S1"},
{sql: "rollback to s1", err: "[executor:1305]SAVEPOINT s1 does not exist"},
{sql: "rollback to S1", err: "[executor:1305]SAVEPOINT S1 does not exist"},
{sql: "rollback"},
{sql: "begin"},
{sql: "savepoint s1"},
{sql: "insert into t values (1, 1)"},
{sql: "savepoint s2"},
{sql: "insert into t values (2, 2)"},
{sql: "savepoint S1"},
{sql: "insert into t values (3, 3)"},
{sql: "rollback to s1"},
{sql: "select * from t order by id", result: []string{"1 1", "2 2"}},
{sql: "commit"},
{sql: "select * from t order by id", result: []string{"1 1", "2 2"}},
{sql: "delete from t"},
// Test for release savepoint
{sql: "begin;"},
{sql: "insert into t values (1, 1)"},
{sql: "savepoint s1"},
{sql: "insert into t values (2, 2)"},
{sql: "savepoint s2"},
{sql: "select * from t order by id", result: []string{"1 1", "2 2"}},
{sql: "release savepoint s1;"},
{sql: "select * from t order by id", result: []string{"1 1", "2 2"}},
{sql: "rollback to s2", err: "[executor:1305]SAVEPOINT s2 does not exist"},
{sql: "select * from t order by id", result: []string{"1 1", "2 2"}},
{sql: "rollback"},
}
txnModes := []string{"optimistic", "pessimistic", ""}
for _, txnMode := range txnModes {
tk.MustExec(fmt.Sprintf("set session tidb_txn_mode='%v';", txnMode))
for idx, ca := range cases {
comment := fmt.Sprintf("idx: %v, %#v", idx, ca)
if ca.result == nil {
if ca.err == "" {
tk.MustExec(ca.sql)
} else {
err := tk.ExecToErr(ca.sql)
require.Error(t, err, comment)
require.Equal(t, ca.err, err.Error(), comment)
}
} else {
tk.MustQuery(ca.sql).Check(testkit.Rows(ca.result...))
}
}
}
}
func TestRollbackToSavepoint(t *testing.T) {
store := testkit.CreateMockStore(t)
tk := testkit.NewTestKit(t, store)
tk.MustExec("use test")
tk.MustExec("create table t(id int, a int, unique index idx(id))")
tk.MustExec("begin pessimistic")
tk.MustExec("insert into t values (1,1)")
tk.MustExec("savepoint s1")
tk.MustExec("insert into t values (2,2)")
tk.MustExec("rollback to s1")
tk.MustExec("insert into t values (2,2)")
tk.MustQuery("select * from t").Check(testkit.Rows("1 1", "2 2"))
tk.MustExec("rollback to s1")
tk.MustQuery("select * from t").Check(testkit.Rows("1 1"))
tk.MustExec("commit")
tk.MustQuery("select * from t").Check(testkit.Rows("1 1"))
tk.MustExec("delete from t")
tk.MustExec("insert into t values (1,1)")
tk.MustExec("begin pessimistic")
tk.MustExec("delete from t where id = 1")
tk.MustExec("savepoint s1")
tk.MustExec("insert into t values (1,2)")
tk.MustExec("rollback to s1")
tk.MustQuery("select * from t").Check(testkit.Rows())
tk.MustExec("commit")
tk.MustQuery("select * from t").Check(testkit.Rows())
}
func TestRollbackToSavepointReleasePessimisticLock(t *testing.T) {
store := testkit.CreateMockStore(t)
tk1 := testkit.NewTestKit(t, store)
tk1.MustExec("use test")
tk1.MustExec("create table t(id int key, a int)")
tk2 := testkit.NewTestKit(t, store)
tk2.MustExec("use test")
tk1.MustExec("begin pessimistic")
tk1.MustExec("insert into t values (1,1)")
tk1.MustExec("savepoint s1")
tk1.MustExec("insert into t values (2,2)")
tk1.MustExec("rollback to s1")
tk2.MustExec("begin pessimistic")
start := time.Now()
// test for release lock after rollback to savepoint then commit.
tk1.MustExec("commit")
tk2.MustExec("insert into t values (2,2)")
require.Less(t, time.Since(start).Seconds(), float64(2))
tk2.MustExec("commit")
tk1.MustExec("delete from t")
tk1.MustExec("insert into t values (1, 1)")
tk1.MustExec("begin pessimistic")
tk1.MustExec("select * from t where a= 1 for update")
tk1.MustExec("savepoint s1")
tk1.MustExec("delete from t where a = 1")
// After rollback to s1, should not release lock in the row which a = 1
tk1.MustExec("rollback to s1")
tk2.MustExec("begin pessimistic")
start = time.Now()
var wait time.Duration
go func() {
time.Sleep(time.Millisecond * 100)
wait = time.Since(start)
tk1.MustExec("rollback")
}()
// should wait until tk1 rollback and release the lock.
tk2.MustExec("select * from t where a= 1 for update")
require.Less(t, wait.Seconds(), time.Since(start).Seconds())
}
func TestSavepointInPessimisticAndOptimistic(t *testing.T) {
store := testkit.CreateMockStore(t)
tk1 := testkit.NewTestKit(t, store)
tk1.MustExec("use test")
tk1.MustExec("create table t(id int key, a int)")
tk2 := testkit.NewTestKit(t, store)
tk2.MustExec("use test")
// Test for rollback savepoint in pessimistic txn.
tk1.MustExec("begin pessimistic")
tk1.MustExec("insert into t values (1,1)")
tk1.MustExec("savepoint s1")
tk1.MustExec("insert into t values (2,2)")
tk1.MustExec("rollback to s1")
tk2.MustExec("begin optimistic")
tk2.MustExec("insert into t values (2,2)")
tk1.MustExec("commit")
tk1.MustQuery("select * from t").Check(testkit.Rows("1 1"))
tk2.MustQuery("select * from t").Check(testkit.Rows("2 2"))
tk2.MustExec("commit")
tk1.MustQuery("select * from t").Check(testkit.Rows("1 1", "2 2"))
// Test for rollback savepoint in optimistic txn.
tk1.MustExec("truncate table t")
tk1.MustExec("begin optimistic")
tk1.MustExec("insert into t values (1,1)")
tk1.MustExec("savepoint s1")
tk1.MustExec("insert into t values (2,2)")
tk1.MustExec("rollback to s1")
tk2.MustExec("begin pessimistic")
tk2.MustExec("insert into t values (2,2)")
tk1.MustExec("commit")
tk1.MustQuery("select * from t").Check(testkit.Rows("1 1"))
tk2.MustQuery("select * from t").Check(testkit.Rows("2 2"))
tk2.MustExec("commit")
tk1.MustQuery("select * from t").Check(testkit.Rows("1 1", "2 2"))
}
func TestSavepointInBigTxn(t *testing.T) {
store := testkit.CreateMockStore(t)
tk1 := testkit.NewTestKit(t, store)
tk1.MustExec("use test")
tk1.MustExec("create table t(id int key, a int)")
rowCount := 10000
// Test for rollback batch insert
tk1.MustExec("begin pessimistic")
tk1.MustExec("insert into t values (0, 0)")
tk1.MustExec("savepoint s1")
for i := 1; i < rowCount; i++ {
insert := fmt.Sprintf("insert into t values (%v, %v)", i, i)
tk1.MustExec(insert)
}
tk1.MustQuery("select count(*) from t").Check(testkit.Rows(strconv.Itoa(rowCount)))
tk1.MustExec("rollback to s1")
tk1.MustQuery("select count(*) from t").Check(testkit.Rows("1"))
tk1.MustExec("commit")
tk1.MustQuery("select count(*) from t").Check(testkit.Rows("1"))
// Test for rollback batch update
tk1.MustExec("begin")
for i := 1; i < rowCount; i++ {
insert := fmt.Sprintf("insert into t values (%v, %v)", i, i)
tk1.MustExec(insert)
}
tk1.MustExec("commit")
tk1.MustExec("begin pessimistic")
tk1.MustExec("savepoint s1")
for i := 1; i < rowCount; i++ {
update := fmt.Sprintf("update t set a=a+1 where id = %v", i)
tk1.MustExec(update)
}
tk1.MustQuery("select count(*) from t where id != a").Check(testkit.Rows(strconv.Itoa(rowCount - 1)))
tk1.MustExec("rollback to s1")
tk1.MustQuery("select count(*) from t where id != a").Check(testkit.Rows("0"))
tk1.MustExec("commit")
tk1.MustQuery("select count(*) from t").Check(testkit.Rows(strconv.Itoa(rowCount)))
// Test for rollback batch insert on duplicate update
tk1.MustExec("begin pessimistic")
tk1.MustExec("savepoint s1")
for i := 1; i < rowCount; i++ {
insert := fmt.Sprintf("insert into t values (%v, %v) on duplicate key update a=a+1", i, i)
tk1.MustExec(insert)
}
tk1.MustQuery("select count(*) from t where id != a").Check(testkit.Rows(strconv.Itoa(rowCount - 1)))
tk1.MustExec("rollback to s1")
tk1.MustQuery("select count(*) from t where id != a").Check(testkit.Rows("0"))
tk1.MustExec("commit")
tk1.MustQuery("select count(*) from t").Check(testkit.Rows(strconv.Itoa(rowCount)))
// Test for rollback batch delete.
tk1.MustExec("begin pessimistic")
tk1.MustExec("insert into t values (-1, -1)")
tk1.MustExec("savepoint s1")
for i := 0; i < rowCount; i++ {
update := fmt.Sprintf("delete from t where id = %v", i)
tk1.MustExec(update)
}
tk1.MustQuery("select count(*) from t").Check(testkit.Rows("1"))
tk1.MustExec("rollback to s1")
tk1.MustQuery("select count(*) from t").Check(testkit.Rows(strconv.Itoa(rowCount + 1)))
tk1.MustExec("rollback")
tk1.MustQuery("select count(*) from t").Check(testkit.Rows(strconv.Itoa(rowCount)))
// Test for many savepoint in 1 txn.
tk1.MustExec("truncate table t")
tk1.MustExec("begin pessimistic")
for i := 0; i < rowCount; i++ {
insert := fmt.Sprintf("insert into t values (%v, %v)", i, i)
tk1.MustExec(insert)
tk1.MustExec(fmt.Sprintf("savepoint s%v", i))
}
tk1.MustQuery("select count(*) from t").Check(testkit.Rows(strconv.Itoa(rowCount)))
tk1.MustExec("rollback to s1")
tk1.MustExec("commit")
tk1.MustQuery("select * from t order by id").Check(testkit.Rows("0 0", "1 1"))
}
func TestSavepointRandTestIssue0(t *testing.T) {
store := testkit.CreateMockStore(t)
tk := testkit.NewTestKit(t, store)
tk.MustExec("use test")
tk.MustExec("CREATE TABLE t (a enum('B','C') NOT NULL,UNIQUE KEY idx_1 (a),KEY idx_2 (a));")
tk.MustExec("begin pessimistic")
tk.MustExec("savepoint sp0;")
tk.MustExec("insert ignore into t values ( 'B' ),( 'C' );")
err := tk.ExecToErr("update t set a = 'C' where a = 'B';")
require.Error(t, err)
tk.MustExec("select * from t where a = 'B' for update;")
tk.MustExec("rollback to sp0;")
tk.MustExec("delete from t where a = 'B' ;")
}
func TestSavepointWithTemporaryTable(t *testing.T) {
store := testkit.CreateMockStore(t)
tk := testkit.NewTestKit(t, store)
tk.MustExec("use test")
// Test for local temporary table.
txnModes := []string{"optimistic", "pessimistic", ""}
for _, txnMode := range txnModes {
tk.MustExec(fmt.Sprintf("set session tidb_txn_mode='%v';", txnMode))
tk.MustExec("drop table if exists tmp1")
tk.MustExec("create temporary table tmp1 (id int primary key auto_increment, u int unique, v int)")
tk.MustExec("insert into tmp1 values(1, 11, 101)")
tk.MustExec("begin")
tk.MustExec("savepoint sp0;")
tk.MustExec("insert into tmp1 values(2, 22, 202)")
tk.MustExec("savepoint sp1;")
tk.MustExec("insert into tmp1 values(3, 33, 303)")
tk.MustExec("rollback to sp1;")
tk.MustQuery("select * from tmp1 order by id").Check(testkit.Rows("1 11 101", "2 22 202"))
tk.MustExec("commit")
tk.MustQuery("select * from tmp1 order by id").Check(testkit.Rows("1 11 101", "2 22 202"))
}
// Test for global temporary table.
for _, txnMode := range txnModes {
tk.MustExec(fmt.Sprintf("set session tidb_txn_mode='%v';", txnMode))
tk.MustExec("drop table if exists tmp1")
tk.MustExec("create global temporary table tmp1 (id int primary key auto_increment, u int unique, v int) on commit delete rows")
tk.MustExec("begin")
tk.MustExec("savepoint sp0;")
tk.MustExec("insert into tmp1 values(2, 22, 202)")
tk.MustExec("savepoint sp1;")
tk.MustExec("insert into tmp1 values(3, 33, 303)")
tk.MustExec("savepoint sp2;")
tk.MustExec("insert into tmp1 values(4, 44, 404)")
tk.MustExec("rollback to sp2;")
tk.MustQuery("select * from tmp1 order by id").Check(testkit.Rows("2 22 202", "3 33 303"))
tk.MustExec("rollback to sp1;")
tk.MustQuery("select * from tmp1 order by id").Check(testkit.Rows("2 22 202"))
tk.MustExec("commit")
tk.MustQuery("select * from tmp1 order by id").Check(testkit.Rows())
}
}
func TestSavepointWithCacheTable(t *testing.T) {
store := testkit.CreateMockStore(t)
tk := testkit.NewTestKit(t, store)
tk.MustExec("use test")
tk.MustExec("create table t0 (id int primary key, v int)")
txnModes := []string{"optimistic", "pessimistic", ""}
for _, txnMode := range txnModes {
tk.MustExec(fmt.Sprintf("set session tidb_txn_mode='%v';", txnMode))
tk.MustExec("create table if not exists t (id int primary key auto_increment, u int unique, v int)")
tk.MustExec("delete from t")
tk.MustExec("delete from t0")
tk.MustExec("ALTER TABLE t CACHE;")
tk.MustExec("begin")
tk.MustExec("insert into t0 values(1, 1)")
tk.MustExec("savepoint sp0;")
tk.MustExec("insert into t values(1, 11, 101)")
txnCtx := tk.Session().GetSessionVars().TxnCtx
require.Equal(t, 1, len(txnCtx.CachedTables))
tk.MustExec("savepoint sp1;")
tk.MustExec("insert into t values(2, 22, 202)")
tk.MustExec("savepoint sp2;")
tk.MustExec("insert into t values(3, 33, 303)")
tk.MustExec("rollback to sp2;")
require.Equal(t, 1, len(txnCtx.CachedTables))
tk.MustQuery("select * from t order by id").Check(testkit.Rows("1 11 101", "2 22 202"))
tk.MustExec("rollback to sp1;")
require.Equal(t, 1, len(txnCtx.CachedTables))
tk.MustQuery("select * from t order by id").Check(testkit.Rows("1 11 101"))
tk.MustExec("rollback to sp0;")
tk.MustQuery("select * from t order by id").Check(testkit.Rows())
tk.MustQuery("select * from t0 order by id").Check(testkit.Rows("1 1"))
require.Equal(t, 0, len(txnCtx.CachedTables))
tk.MustExec("commit")
tk.MustQuery("select * from t order by id").Check(testkit.Rows())
tk.MustQuery("select * from t0 order by id").Check(testkit.Rows("1 1"))
}
}
func TestSavepointWithBinlog(t *testing.T) {
store := testkit.CreateMockStore(t)
tk := testkit.NewTestKit(t, store)
// mock for binlog enabled.
tk.Session().GetSessionVars().BinlogClient = binloginfo.MockPumpsClient(&mockPumpClient{})
tk.MustExec("use test")
tk.MustExec("create table t(id int, a int, unique index idx(id))")
tk.MustExec("begin pessimistic")
tk.MustExec("insert into t values (1,1)")
err := tk.ExecToErr("savepoint s1")
require.Error(t, err)
require.Equal(t, executor.ErrSavepointNotSupportedWithBinlog.Error(), err.Error())
err = tk.ExecToErr("rollback to s1")
require.Error(t, err)
require.Equal(t, "[executor:1305]SAVEPOINT s1 does not exist", err.Error())
err = tk.ExecToErr("release savepoint s1")
require.Error(t, err)
require.Equal(t, "[executor:1305]SAVEPOINT s1 does not exist", err.Error())
tk.MustQuery("select * from t").Check(testkit.Rows("1 1"))
tk.MustExec("commit")
tk.MustQuery("select * from t").Check(testkit.Rows("1 1"))
}
type mockPumpClient struct{}
func (m mockPumpClient) WriteBinlog(ctx context.Context, in *binlog.WriteBinlogReq, opts ...grpc.CallOption) (*binlog.WriteBinlogResp, error) {
return &binlog.WriteBinlogResp{}, nil
}
func (m mockPumpClient) PullBinlogs(ctx context.Context, in *binlog.PullBinlogReq, opts ...grpc.CallOption) (binlog.Pump_PullBinlogsClient, error) {
return nil, nil
}