Skip to content

Commit

Permalink
make fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Defined2014 committed Jan 17, 2025
1 parent 2b99b26 commit 6005c5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/realtikvtest/importintotest/import_into_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -244,14 +244,14 @@ func (s *mockGCSSuite) TestBasicImportInto() {
createTableSQL: "create table t (a bigint, b varchar(100), c int) partition by hash(a) partitions 5;",
flags: "(c, b, a)",
res: []string{"11 test1 1", "22 test2 2", "33 test3 3", "44 test4 4", "55 test5 5", "66 test6 6"},
querySQL: "select * from t order by c",
querySQL: "select * from t order by c",
},
// partition table + global index
{
createTableSQL: "create table t (a bigint, b varchar(100), c int, index idx(c) global) partition by hash(a) partitions 5;",
flags: "(c, b, a)",
res: []string{"11 test1 1", "22 test2 2", "33 test3 3", "44 test4 4", "55 test5 5", "66 test6 6"},
querySQL: "select * from t use index(idx) order by c",
querySQL: "select * from t use index(idx) order by c",
},
}

Expand Down

0 comments on commit 6005c5d

Please sign in to comment.