forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ddl: support the rolling upgrade. (pingcap#6301)
- Loading branch information
Showing
3 changed files
with
52 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// Copyright 2018 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, | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package ddl_test | ||
|
||
import ( | ||
gofail "github.com/coreos/gofail/runtime" | ||
. "github.com/pingcap/check" | ||
"golang.org/x/net/context" | ||
) | ||
|
||
// TestInitializeOffsetAndState tests the case that the column's offset and state don't be initialized in the file of ddl_api.go when | ||
// doing the operation of 'modify column'. | ||
func (s *testStateChangeSuite) TestInitializeOffsetAndState(c *C) { | ||
_, err := s.se.Execute(context.Background(), "use test_db_state") | ||
c.Assert(err, IsNil) | ||
_, err = s.se.Execute(context.Background(), "create table t(a int, b int, c int)") | ||
c.Assert(err, IsNil) | ||
defer s.se.Execute(context.Background(), "drop table t") | ||
|
||
gofail.Enable("github.com/pingcap/tidb/ddl/uninitializedOffsetAndState", `return(true)`) | ||
_, err = s.se.Execute(context.Background(), "ALTER TABLE t MODIFY COLUMN b int FIRST;") | ||
c.Assert(err, IsNil) | ||
gofail.Disable("github.com/pingcap/tidb/ddl/uninitializedOffsetAndState") | ||
} |