Skip to content

Commit 22a1e1a

Browse files
committed
fix GetStringAdpativeValue use
1 parent ae7a2b1 commit 22a1e1a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

server/tables/dtables/ignore.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ func convertTupleToIgnoreBoolean(ctx context.Context, valueDesc *val.TupleDesc,
6060

6161
// getIgnoreTablePatternKey reads the pattern key from a tuple and returns it.
6262
func getIgnoreTablePatternKey(ctx context.Context, keyDesc *val.TupleDesc, keyTuple val.Tuple) (string, error) {
63-
key, ok, err := keyDesc.GetStringAdaptiveValue(0, nil, keyTuple)
63+
key, ok, err := keyDesc.GetStringAdaptiveValue(ctx, 0, nil, keyTuple)
6464
if err != nil {
6565
return "", err
6666
}

0 commit comments

Comments
 (0)