-
Notifications
You must be signed in to change notification settings - Fork 5.9k
/
index.go
748 lines (708 loc) · 24.4 KB
/
index.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
// Copyright 2016 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 tables
import (
"context"
"sync"
"time"
"github.com/pingcap/errors"
"github.com/pingcap/tidb/pkg/errctx"
"github.com/pingcap/tidb/pkg/kv"
"github.com/pingcap/tidb/pkg/meta/model"
"github.com/pingcap/tidb/pkg/parser/mysql"
"github.com/pingcap/tidb/pkg/table"
"github.com/pingcap/tidb/pkg/tablecodec"
"github.com/pingcap/tidb/pkg/types"
"github.com/pingcap/tidb/pkg/util"
"github.com/pingcap/tidb/pkg/util/intest"
"github.com/pingcap/tidb/pkg/util/rowcodec"
"github.com/pingcap/tidb/pkg/util/tracing"
)
// index is the data structure for index data in the KV store.
type index struct {
idxInfo *model.IndexInfo
tblInfo *model.TableInfo
phyTblID int64
// initNeedRestoreData is used to initialize `needRestoredData` in `index.Create()`.
// This routine cannot be done in `NewIndex()` because `needRestoreData` relies on `NewCollationEnabled()` and
// the collation global variable is initialized *after* `NewIndex()`.
initNeedRestoreData sync.Once
needRestoredData bool
}
// NeedRestoredData checks whether the index columns needs restored data.
func NeedRestoredData(idxCols []*model.IndexColumn, colInfos []*model.ColumnInfo) bool {
for _, idxCol := range idxCols {
col := colInfos[idxCol.Offset]
if types.NeedRestoredData(&col.FieldType) {
return true
}
}
return false
}
// NewIndex builds a new Index object.
func NewIndex(physicalID int64, tblInfo *model.TableInfo, indexInfo *model.IndexInfo) table.Index {
index := &index{
idxInfo: indexInfo,
tblInfo: tblInfo,
phyTblID: physicalID,
}
return index
}
// Meta returns index info.
func (c *index) Meta() *model.IndexInfo {
return c.idxInfo
}
// TableMeta returns table info.
func (c *index) TableMeta() *model.TableInfo {
return c.tblInfo
}
// GenIndexKey generates storage key for index values. Returned distinct indicates whether the
// indexed values should be distinct in storage (i.e. whether handle is encoded in the key).
func (c *index) GenIndexKey(ec errctx.Context, loc *time.Location, indexedValues []types.Datum, h kv.Handle, buf []byte) (key []byte, distinct bool, err error) {
idxTblID := c.phyTblID
if c.idxInfo.Global {
pi := c.tblInfo.GetPartitionInfo()
if pi.NewTableID != 0 && c.idxInfo.State != model.StatePublic {
idxTblID = pi.NewTableID
} else {
idxTblID = c.tblInfo.ID
}
}
key, distinct, err = tablecodec.GenIndexKey(loc, c.tblInfo, c.idxInfo, idxTblID, indexedValues, h, buf)
err = ec.HandleError(err)
return
}
// GenIndexValue generates the index value.
func (c *index) GenIndexValue(ec errctx.Context, loc *time.Location, distinct bool, indexedValues []types.Datum,
h kv.Handle, restoredData []types.Datum, buf []byte) ([]byte, error) {
c.initNeedRestoreData.Do(func() {
c.needRestoredData = NeedRestoredData(c.idxInfo.Columns, c.tblInfo.Columns)
})
idx, err := tablecodec.GenIndexValuePortal(loc, c.tblInfo, c.idxInfo, c.needRestoredData, distinct, false, indexedValues, h, c.phyTblID, restoredData, buf)
err = ec.HandleError(err)
return idx, err
}
// getIndexedValue will produce the result like:
// 1. If not multi-valued index, return directly.
// 2. (i1, [m1,m2], i2, ...) ==> [(i1, m1, i2, ...), (i1, m2, i2, ...)]
// 3. (i1, null, i2, ...) ==> [(i1, null, i2, ...)]
// 4. (i1, [], i2, ...) ==> nothing.
func (c *index) getIndexedValue(indexedValues []types.Datum) [][]types.Datum {
if !c.idxInfo.MVIndex {
return [][]types.Datum{indexedValues}
}
vals := make([][]types.Datum, 0, 16)
jsonIdx := 0
jsonIsNull := false
existsVals := make(map[string]struct{})
var buf []byte
for !jsonIsNull {
val := make([]types.Datum, 0, len(indexedValues))
for i, v := range indexedValues {
if !c.tblInfo.Columns[c.idxInfo.Columns[i].Offset].FieldType.IsArray() {
val = append(val, v)
} else {
// if the datum type is not JSON, it must come from cleanup index.
if v.IsNull() || v.Kind() != types.KindMysqlJSON {
val = append(val, v)
jsonIsNull = true
continue
}
elemCount := v.GetMysqlJSON().GetElemCount()
for {
// JSON cannot be indexed, if the value is JSON type, it must be multi-valued index.
if jsonIdx >= elemCount {
goto out
}
binaryJSON := v.GetMysqlJSON().ArrayGetElem(jsonIdx)
jsonIdx++
buf = buf[:0]
key := string(binaryJSON.HashValue(buf))
if _, exists := existsVals[key]; exists {
continue
}
existsVals[key] = struct{}{}
val = append(val, types.NewDatum(binaryJSON.GetValue()))
break
}
}
}
vals = append(vals, val)
}
out:
return vals
}
// Create creates a new entry in the kvIndex data.
// If the index is unique and there is an existing entry with the same key,
// Create will return the existing entry's handle as the first return value, ErrKeyExists as the second return value.
func (c *index) Create(sctx table.MutateContext, txn kv.Transaction, indexedValue []types.Datum, h kv.Handle, handleRestoreData []types.Datum, opts ...table.CreateIdxOption) (kv.Handle, error) {
opt := table.NewCreateIdxOpt(opts...)
return c.create(sctx, txn, indexedValue, h, handleRestoreData, false, opt)
}
func (c *index) create(sctx table.MutateContext, txn kv.Transaction, indexedValue []types.Datum, h kv.Handle, handleRestoreData []types.Datum, untouched bool, opt *table.CreateIdxOpt) (kv.Handle, error) {
if c.Meta().Unique {
txn.CacheTableInfo(c.phyTblID, c.tblInfo)
}
indexedValues := c.getIndexedValue(indexedValue)
ctx := opt.Ctx()
if ctx != nil {
var r tracing.Region
r, ctx = tracing.StartRegionEx(ctx, "index.Create")
defer r.End()
} else {
ctx = context.TODO()
}
writeBufs := sctx.GetMutateBuffers().GetWriteStmtBufs()
skipCheck := opt.DupKeyCheck() == table.DupKeyCheckSkip
evalCtx := sctx.GetExprCtx().GetEvalCtx()
loc, ec := evalCtx.Location(), evalCtx.ErrCtx()
for _, value := range indexedValues {
key, distinct, err := c.GenIndexKey(ec, loc, value, h, writeBufs.IndexKeyBuf)
if err != nil {
return nil, err
}
var (
tempKey []byte
keyVer byte
keyIsTempIdxKey bool
)
if !opt.FromBackFill() {
key, tempKey, keyVer = GenTempIdxKeyByState(c.idxInfo, key)
if keyVer == tablecodec.TempIndexKeyTypeBackfill || keyVer == tablecodec.TempIndexKeyTypeDelete {
key, tempKey = tempKey, nil
keyIsTempIdxKey = true
}
}
if txn.IsPipelined() {
// For pipelined DML, disable the untouched optimization to avoid extra RPCs for MemBuffer.Get().
// TODO: optimize this.
untouched = false
}
if untouched {
// If the index kv was untouched(unchanged), and the key/value already exists in mem-buffer,
// should not overwrite the key with un-commit flag.
// So if the key exists, just do nothing and return.
v, err := txn.GetMemBuffer().Get(ctx, key)
if err == nil {
if len(v) != 0 {
continue
}
// The key is marked as deleted in the memory buffer, as the existence check is done lazily
// for optimistic transactions by default. The "untouched" key could still exist in the store,
// it's needed to commit this key to do the existence check so unset the untouched flag.
if !txn.IsPessimistic() {
keyFlags, err := txn.GetMemBuffer().GetFlags(key)
if err != nil {
return nil, err
}
if keyFlags.HasPresumeKeyNotExists() {
untouched = false
}
}
}
}
// save the key buffer to reuse.
writeBufs.IndexKeyBuf = key
c.initNeedRestoreData.Do(func() {
c.needRestoredData = NeedRestoredData(c.idxInfo.Columns, c.tblInfo.Columns)
})
idxVal, err := tablecodec.GenIndexValuePortal(loc, c.tblInfo, c.idxInfo,
c.needRestoredData, distinct, untouched, value, h, c.phyTblID, handleRestoreData, nil)
err = ec.HandleError(err)
if err != nil {
return nil, err
}
ignoreAssertion := opt.IgnoreAssertion() || c.idxInfo.State != model.StatePublic
if !distinct || skipCheck || untouched {
val := idxVal
if untouched && (keyIsTempIdxKey || len(tempKey) > 0) {
// Untouched key-values never occur in the storage and the temp index is not public.
// It is unnecessary to write the untouched temp index key-values.
continue
}
if keyIsTempIdxKey {
tempVal := tablecodec.TempIndexValueElem{Value: idxVal, KeyVer: keyVer, Distinct: distinct}
val = tempVal.Encode(nil)
}
err = txn.GetMemBuffer().Set(key, val)
if err != nil {
return nil, err
}
if len(tempKey) > 0 {
tempVal := tablecodec.TempIndexValueElem{Value: idxVal, KeyVer: keyVer, Distinct: distinct}
val = tempVal.Encode(nil)
err = txn.GetMemBuffer().Set(tempKey, val)
if err != nil {
return nil, err
}
}
if !ignoreAssertion && !untouched {
if opt.DupKeyCheck() == table.DupKeyCheckLazy && !txn.IsPessimistic() {
err = txn.SetAssertion(key, kv.SetAssertUnknown)
} else {
err = txn.SetAssertion(key, kv.SetAssertNotExist)
}
}
if err != nil {
return nil, err
}
continue
}
var value []byte
if c.tblInfo.TempTableType != model.TempTableNone {
// Always check key for temporary table because it does not write to TiKV
value, err = txn.Get(ctx, key)
} else if opt.DupKeyCheck() == table.DupKeyCheckLazy && !keyIsTempIdxKey {
// For temp index keys, we can't get the temp value from memory buffer, even if the lazy check is enabled.
// Otherwise, it may cause the temp index value to be overwritten, leading to data inconsistency.
value, err = txn.GetMemBuffer().GetLocal(ctx, key)
} else {
value, err = txn.Get(ctx, key)
}
if err != nil && !kv.IsErrNotFound(err) {
return nil, err
}
var tempIdxVal tablecodec.TempIndexValue
if len(value) > 0 && keyIsTempIdxKey {
tempIdxVal, err = tablecodec.DecodeTempIndexValue(value)
if err != nil {
return nil, err
}
}
// The index key value is not found or deleted.
if err != nil || len(value) == 0 || (!tempIdxVal.IsEmpty() && tempIdxVal.Current().Delete) {
val := idxVal
lazyCheck := opt.DupKeyCheck() == table.DupKeyCheckLazy && err != nil
if keyIsTempIdxKey {
tempVal := tablecodec.TempIndexValueElem{Value: idxVal, KeyVer: keyVer, Distinct: true}
val = tempVal.Encode(value)
}
needPresumeNotExists, err := needPresumeKeyNotExistsFlag(ctx, txn, key, tempKey, h,
keyIsTempIdxKey, c.tblInfo.ID)
if err != nil {
return nil, err
}
if lazyCheck {
var flags []kv.FlagsOp
if needPresumeNotExists {
flags = []kv.FlagsOp{kv.SetPresumeKeyNotExists}
}
if opt.PessimisticLazyDupKeyCheck() == table.DupKeyCheckInPrewrite && txn.IsPessimistic() {
flags = append(flags, kv.SetNeedConstraintCheckInPrewrite)
}
err = txn.GetMemBuffer().SetWithFlags(key, val, flags...)
} else {
err = txn.GetMemBuffer().Set(key, val)
}
if err != nil {
return nil, err
}
if len(tempKey) > 0 {
tempVal := tablecodec.TempIndexValueElem{Value: idxVal, KeyVer: keyVer, Distinct: true}
val = tempVal.Encode(value)
if lazyCheck && needPresumeNotExists {
err = txn.GetMemBuffer().SetWithFlags(tempKey, val, kv.SetPresumeKeyNotExists)
} else {
err = txn.GetMemBuffer().Set(tempKey, val)
}
if err != nil {
return nil, err
}
}
if ignoreAssertion {
continue
}
if lazyCheck && !txn.IsPessimistic() {
err = txn.SetAssertion(key, kv.SetAssertUnknown)
} else {
err = txn.SetAssertion(key, kv.SetAssertNotExist)
}
if err != nil {
return nil, err
}
continue
}
if keyIsTempIdxKey && !tempIdxVal.IsEmpty() {
value = tempIdxVal.Current().Value
}
handle, err := tablecodec.DecodeHandleInIndexValue(value)
if err != nil {
return nil, err
}
return handle, kv.ErrKeyExists
}
return nil, nil
}
func needPresumeKeyNotExistsFlag(ctx context.Context, txn kv.Transaction, key, tempKey kv.Key,
h kv.Handle, keyIsTempIdxKey bool, tblID int64) (needFlag bool, err error) {
var uniqueTempKey kv.Key
if keyIsTempIdxKey {
uniqueTempKey = key
} else if len(tempKey) > 0 {
uniqueTempKey = tempKey
} else {
return true, nil
}
foundKey, dupHandle, err := FetchDuplicatedHandle(ctx, uniqueTempKey, true, txn, tblID)
if err != nil {
return false, err
}
if foundKey && dupHandle != nil && !dupHandle.Equal(h) {
return false, kv.ErrKeyExists
}
return false, nil
}
// Delete removes the entry for handle h and indexedValues from KV index.
func (c *index) Delete(ctx table.MutateContext, txn kv.Transaction, indexedValue []types.Datum, h kv.Handle) error {
indexedValues := c.getIndexedValue(indexedValue)
evalCtx := ctx.GetExprCtx().GetEvalCtx()
loc, ec := evalCtx.Location(), evalCtx.ErrCtx()
for _, value := range indexedValues {
key, distinct, err := c.GenIndexKey(ec, loc, value, h, nil)
if err != nil {
return err
}
key, tempKey, tempKeyVer := GenTempIdxKeyByState(c.idxInfo, key)
var originTempVal []byte
if len(tempKey) > 0 && c.idxInfo.Unique {
// Get the origin value of the unique temporary index key.
// Append the new delete operations to the end of the origin value.
originTempVal, err = getKeyInTxn(context.TODO(), txn, tempKey)
if err != nil {
return err
}
}
tempValElem := tablecodec.TempIndexValueElem{Handle: h, KeyVer: tempKeyVer, Delete: true, Distinct: distinct}
if c.idxInfo.Global {
tempValElem.Global = true
tempValElem.Handle = kv.NewPartitionHandle(c.phyTblID, h)
}
if distinct {
if len(key) > 0 {
okToDelete := true
if c.idxInfo.BackfillState != model.BackfillStateInapplicable {
// #52914: the delete key is covered by the new ingested key, which shouldn't be deleted.
originVal, err := getKeyInTxn(context.TODO(), txn, key)
if err != nil {
return err
}
if len(originVal) > 0 {
oh, err := tablecodec.DecodeHandleInIndexValue(originVal)
if err != nil {
return err
}
if !h.Equal(oh) {
okToDelete = false
}
}
}
if okToDelete {
err = txn.GetMemBuffer().DeleteWithFlags(key, kv.SetNeedLocked)
if err != nil {
return err
}
}
}
if len(tempKey) > 0 {
// Append to the end of the origin value for distinct value.
tempVal := tempValElem.Encode(originTempVal)
err = txn.GetMemBuffer().Set(tempKey, tempVal)
if err != nil {
return err
}
}
} else {
if len(key) > 0 {
err = txn.GetMemBuffer().Delete(key)
if err != nil {
return err
}
}
if len(tempKey) > 0 {
tempVal := tempValElem.Encode(nil)
err = txn.GetMemBuffer().Set(tempKey, tempVal)
if err != nil {
return err
}
}
}
if c.idxInfo.State == model.StatePublic {
// If the index is in public state, delete this index means it must exists.
err = txn.SetAssertion(key, kv.SetAssertExist)
}
if err != nil {
return err
}
}
return nil
}
func (c *index) GenIndexKVIter(ec errctx.Context, loc *time.Location, indexedValue []types.Datum,
h kv.Handle, handleRestoreData []types.Datum) table.IndexKVGenerator {
var mvIndexValues [][]types.Datum
if c.Meta().MVIndex {
mvIndexValues = c.getIndexedValue(indexedValue)
return table.NewMultiValueIndexKVGenerator(c, ec, loc, h, handleRestoreData, mvIndexValues)
}
return table.NewPlainIndexKVGenerator(c, ec, loc, h, handleRestoreData, indexedValue)
}
// GenTempIdxKeyByState is used to get the key version and the temporary key.
// The tempKeyVer means the temp index key/value version.
func GenTempIdxKeyByState(indexInfo *model.IndexInfo, indexKey kv.Key) (key, tempKey kv.Key, tempKeyVer byte) {
if indexInfo.State != model.StatePublic {
switch indexInfo.BackfillState {
case model.BackfillStateInapplicable:
return indexKey, nil, tablecodec.TempIndexKeyTypeNone
case model.BackfillStateRunning:
// Write to the temporary index.
tablecodec.IndexKey2TempIndexKey(indexKey)
if indexInfo.State == model.StateDeleteOnly {
return nil, indexKey, tablecodec.TempIndexKeyTypeDelete
}
return nil, indexKey, tablecodec.TempIndexKeyTypeBackfill
case model.BackfillStateReadyToMerge, model.BackfillStateMerging:
// Double write
tmp := make([]byte, len(indexKey))
copy(tmp, indexKey)
tablecodec.IndexKey2TempIndexKey(tmp)
return indexKey, tmp, tablecodec.TempIndexKeyTypeMerge
}
}
return indexKey, nil, tablecodec.TempIndexKeyTypeNone
}
func (c *index) Exist(ec errctx.Context, loc *time.Location, txn kv.Transaction, indexedValue []types.Datum, h kv.Handle) (bool, kv.Handle, error) {
indexedValues := c.getIndexedValue(indexedValue)
for _, val := range indexedValues {
key, distinct, err := c.GenIndexKey(ec, loc, val, h, nil)
if err != nil {
return false, nil, err
}
// If index current is in creating status and using ingest mode, we need first
// check key exist status in temp index.
key, tempKey, _ := GenTempIdxKeyByState(c.idxInfo, key)
if len(tempKey) > 0 {
key = tempKey
}
foundKey, dupHandle, err := FetchDuplicatedHandle(context.TODO(), key, distinct, txn, c.tblInfo.ID)
if err != nil || !foundKey {
return false, nil, err
}
if dupHandle != nil && !dupHandle.Equal(h) {
return false, nil, err
}
continue
}
return true, h, nil
}
// FetchDuplicatedHandle is used to find the duplicated row's handle for a given unique index key.
func FetchDuplicatedHandle(ctx context.Context, key kv.Key, distinct bool,
txn kv.Transaction, tableID int64) (foundKey bool, dupHandle kv.Handle, err error) {
if tablecodec.IsTempIndexKey(key) {
return fetchDuplicatedHandleForTempIndexKey(ctx, key, distinct, txn, tableID)
}
// The index key is not from temp index.
val, err := getKeyInTxn(ctx, txn, key)
if err != nil || len(val) == 0 {
return false, nil, err
}
if distinct {
h, err := tablecodec.DecodeHandleInIndexValue(val)
return true, h, err
}
return true, nil, nil
}
func fetchDuplicatedHandleForTempIndexKey(ctx context.Context, tempKey kv.Key, distinct bool,
txn kv.Transaction, tableID int64) (foundKey bool, dupHandle kv.Handle, err error) {
tempRawVal, err := getKeyInTxn(ctx, txn, tempKey)
if err != nil {
return false, nil, err
}
if tempRawVal == nil {
originKey := tempKey.Clone()
tablecodec.TempIndexKey2IndexKey(originKey)
originVal, err := getKeyInTxn(ctx, txn, originKey)
if err != nil || originVal == nil {
return false, nil, err
}
if distinct {
originHandle, err := tablecodec.DecodeHandleInIndexValue(originVal)
if err != nil {
return false, nil, err
}
return true, originHandle, err
}
return false, nil, nil
}
tempVal, err := tablecodec.DecodeTempIndexValue(tempRawVal)
if err != nil {
return false, nil, err
}
curElem := tempVal.Current()
if curElem.Delete {
originKey := tempKey.Clone()
tablecodec.TempIndexKey2IndexKey(originKey)
originVal, err := getKeyInTxn(ctx, txn, originKey)
if err != nil || originVal == nil {
return false, nil, err
}
if distinct {
originHandle, err := tablecodec.DecodeHandleInIndexValue(originVal)
if err != nil {
return false, nil, err
}
if originHandle.Equal(curElem.Handle) {
// The key has been deleted. This is not a duplicated key.
return false, nil, nil
}
// The inequality means multiple modifications happened in the same key.
// We use the handle in origin index value to check if the row exists.
recPrefix := tablecodec.GenTableRecordPrefix(tableID)
rowKey := tablecodec.EncodeRecordKey(recPrefix, originHandle)
rowVal, err := getKeyInTxn(ctx, txn, rowKey)
if err != nil || rowVal == nil {
return false, nil, err
}
// The row exists. This is the duplicated key.
return true, originHandle, nil
}
return false, nil, nil
}
// The value in temp index is not the delete marker.
if distinct {
h, err := tablecodec.DecodeHandleInIndexValue(curElem.Value)
return true, h, err
}
return true, nil, nil
}
// getKeyInTxn gets the value of the key in the transaction, and ignore the ErrNotExist error.
func getKeyInTxn(ctx context.Context, txn kv.Transaction, key kv.Key) ([]byte, error) {
val, err := txn.Get(ctx, key)
if err != nil {
if kv.IsErrNotFound(err) {
return nil, nil
}
return nil, err
}
return val, nil
}
// FetchValues implements table.Index interface.
func (c *index) FetchValues(r []types.Datum, vals []types.Datum) ([]types.Datum, error) {
return fetchIndexRow(c.idxInfo, r, vals, nil)
}
func fetchIndexRow(idxInfo *model.IndexInfo, r, vals []types.Datum, opt table.IndexRowLayoutOption) ([]types.Datum, error) {
needLength := len(idxInfo.Columns)
if vals == nil || cap(vals) < needLength {
vals = make([]types.Datum, needLength)
}
vals = vals[:needLength]
// If the context has extra info, use the extra layout info to get index columns.
if len(opt) != 0 {
intest.Assert(len(opt) == len(idxInfo.Columns), "offsets length is not equal to index columns length, offset len: %d, index len: %d", len(opt), len(idxInfo.Columns))
for i, offset := range opt {
if offset < 0 || offset > len(r) {
return nil, table.ErrIndexOutBound.GenWithStackByArgs(idxInfo.Name, offset, r)
}
vals[i] = r[offset]
}
return vals, nil
}
// Otherwise use the full column layout.
for i, ic := range idxInfo.Columns {
if ic.Offset < 0 || ic.Offset >= len(r) {
return nil, table.ErrIndexOutBound.GenWithStackByArgs(ic.Name, ic.Offset, r)
}
vals[i] = r[ic.Offset]
}
return vals, nil
}
// FindChangingCol finds the changing column in idxInfo.
func FindChangingCol(cols []*table.Column, idxInfo *model.IndexInfo) *table.Column {
for _, ic := range idxInfo.Columns {
if col := cols[ic.Offset]; col.ChangeStateInfo != nil {
return col
}
}
return nil
}
// IsIndexWritable check whether the index is writable.
func IsIndexWritable(idx table.Index) bool {
s := idx.Meta().State
if s != model.StateDeleteOnly && s != model.StateDeleteReorganization {
return true
}
return false
}
// BuildRowcodecColInfoForIndexColumns builds []rowcodec.ColInfo for the given index.
// The result can be used for decoding index key-values.
func BuildRowcodecColInfoForIndexColumns(idxInfo *model.IndexInfo, tblInfo *model.TableInfo) []rowcodec.ColInfo {
colInfo := make([]rowcodec.ColInfo, 0, len(idxInfo.Columns))
for _, idxCol := range idxInfo.Columns {
col := tblInfo.Columns[idxCol.Offset]
colInfo = append(colInfo, rowcodec.ColInfo{
ID: col.ID,
IsPKHandle: tblInfo.PKIsHandle && mysql.HasPriKeyFlag(col.GetFlag()),
Ft: rowcodec.FieldTypeFromModelColumn(col),
})
}
return colInfo
}
// BuildFieldTypesForIndexColumns builds the index columns field types.
func BuildFieldTypesForIndexColumns(idxInfo *model.IndexInfo, tblInfo *model.TableInfo) []*types.FieldType {
tps := make([]*types.FieldType, 0, len(idxInfo.Columns))
for _, idxCol := range idxInfo.Columns {
col := tblInfo.Columns[idxCol.Offset]
tps = append(tps, rowcodec.FieldTypeFromModelColumn(col))
}
return tps
}
// TryAppendCommonHandleRowcodecColInfos tries to append common handle columns to `colInfo`.
func TryAppendCommonHandleRowcodecColInfos(colInfo []rowcodec.ColInfo, tblInfo *model.TableInfo) []rowcodec.ColInfo {
if !tblInfo.IsCommonHandle || tblInfo.CommonHandleVersion == 0 {
return colInfo
}
if pkIdx := FindPrimaryIndex(tblInfo); pkIdx != nil {
for _, idxCol := range pkIdx.Columns {
col := tblInfo.Columns[idxCol.Offset]
colInfo = append(colInfo, rowcodec.ColInfo{
ID: col.ID,
Ft: rowcodec.FieldTypeFromModelColumn(col),
})
}
}
return colInfo
}
// GenIndexValueFromIndex generate index value from index.
func GenIndexValueFromIndex(key []byte, value []byte, tblInfo *model.TableInfo, idxInfo *model.IndexInfo) ([]string, error) {
idxColLen := len(idxInfo.Columns)
colInfos := BuildRowcodecColInfoForIndexColumns(idxInfo, tblInfo)
values, err := tablecodec.DecodeIndexKV(key, value, idxColLen, tablecodec.HandleNotNeeded, colInfos)
if err != nil {
return nil, errors.Trace(err)
}
valueStr := make([]string, 0, idxColLen)
for i, val := range values[:idxColLen] {
d, err := tablecodec.DecodeColumnValue(val, colInfos[i].Ft, time.Local)
if err != nil {
return nil, errors.Trace(err)
}
str, err := d.ToString()
if err != nil {
str = string(val)
}
if types.IsBinaryStr(colInfos[i].Ft) || types.IsTypeBit(colInfos[i].Ft) {
str = util.FmtNonASCIIPrintableCharToHex(str)
}
valueStr = append(valueStr, str)
}
return valueStr, nil
}