Skip to content

Commit

Permalink
typo about sci-fi
Browse files Browse the repository at this point in the history
Signed-off-by: lance6716 <[email protected]>
  • Loading branch information
lance6716 committed Feb 26, 2024
1 parent ef0c14b commit 844b110
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/realtikvtest/addindextest2/global_sort_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -273,13 +273,13 @@ func TestIngestUseSameTS(t *testing.T) {
tk.MustExec("set global tidb_enable_dist_task = on;")
tk.MustExec("set @@global.tidb_cloud_storage_uri = '" + cloudStorageURI + "';")

err = failpoint.Enable("github.com/pingcap/tidb/pkd/ddl/mockTSForGlobalSort", `return(123456789)`)
err = failpoint.Enable("github.com/pingcap/tidb/pkg/ddl/mockTSForGlobalSort", `return(123456789)`)
require.NoError(t, err)
tk.MustExec("create table t (a int);")
tk.MustExec("insert into t values (1), (2), (3);")
dom.DDL().SetHook(cb)
tk.MustExec("alter table t add index idx(a);")
err = failpoint.Disable("github.com/pingcap/tidb/pkd/ddl/mockTSForGlobalSort")
err = failpoint.Disable("github.com/pingcap/tidb/pkg/ddl/mockTSForGlobalSort")
require.NoError(t, err)

dts := []types.Datum{types.NewIntDatum(1)}
Expand Down

0 comments on commit 844b110

Please sign in to comment.