Skip to content

Commit

Permalink
executor: rename test files for `select into outfi ... (#19528) (#19551)
Browse files Browse the repository at this point in the history
  • Loading branch information
ti-srebot authored Sep 2, 2020
1 parent e796f48 commit c769d5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions executor/select_into_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func (s *testSuite1) TestSelectIntoFileExists(c *C) {

func (s *testSuite1) TestSelectIntoOutfileFromTable(c *C) {
tmpDir := os.TempDir()
outfile := filepath.Join(tmpDir, "select-into-outfile.data")
outfile := filepath.Join(tmpDir, "TestSelectIntoOutfileFromTable.data")
tk := testkit.NewTestKit(c, s.store)
tk.MustExec("use test")

Expand Down Expand Up @@ -94,7 +94,7 @@ func (s *testSuite1) TestSelectIntoOutfileFromTable(c *C) {

func (s *testSuite1) TestSelectIntoOutfileConstant(c *C) {
tmpDir := os.TempDir()
outfile := filepath.Join(tmpDir, "select-into-outfile.data")
outfile := filepath.Join(tmpDir, "TestSelectIntoOutfileConstant.data")
tk := testkit.NewTestKit(c, s.store)
// On windows the outfile name looks like "C:\Users\genius\AppData\Local\Temp\select-into-outfile.data",
// fmt.Sprintf("%q") is used otherwise the string become
Expand Down

0 comments on commit c769d5b

Please sign in to comment.