-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
schemadiff
: Online DDL support, declarative based (#16462)
Signed-off-by: Shlomi Noach <[email protected]>
- Loading branch information
1 parent
67b5a6d
commit ad27066
Showing
36 changed files
with
3,249 additions
and
2,959 deletions.
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
2 changes: 1 addition & 1 deletion
2
...st/endtoend/onlineddl/vrepl_suite/testdata/fail-different-pk-new-pk-column/expect_failure
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 |
---|---|---|
@@ -1 +1 @@ | ||
Found no possible | ||
found no possible |
2 changes: 1 addition & 1 deletion
2
go/test/endtoend/onlineddl/vrepl_suite/testdata/fail-drop-pk/expect_failure
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 |
---|---|---|
@@ -1 +1 @@ | ||
Found no possible | ||
found no possible |
2 changes: 1 addition & 1 deletion
2
go/test/endtoend/onlineddl/vrepl_suite/testdata/fail-float-unique-key/create.sql
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
2 changes: 1 addition & 1 deletion
2
go/test/endtoend/onlineddl/vrepl_suite/testdata/fail-float-unique-key/expect_failure
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 |
---|---|---|
@@ -1 +1 @@ | ||
Found no possible | ||
found no possible |
2 changes: 1 addition & 1 deletion
2
go/test/endtoend/onlineddl/vrepl_suite/testdata/fail-no-unique-key/expect_failure
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 |
---|---|---|
@@ -1 +1 @@ | ||
Found no possible | ||
found no possible |
1 change: 1 addition & 0 deletions
1
go/test/endtoend/onlineddl/vrepl_suite/testdata/fail-nullable-unique-key/alter
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 @@ | ||
add column v varchar(32) |
11 changes: 11 additions & 0 deletions
11
go/test/endtoend/onlineddl/vrepl_suite/testdata/fail-nullable-unique-key/create.sql
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,11 @@ | ||
drop table if exists onlineddl_test; | ||
create table onlineddl_test ( | ||
id int, | ||
i int not null, | ||
ts timestamp default current_timestamp, | ||
dt datetime, | ||
key i_idx(i), | ||
unique key id_uidx(id) | ||
) auto_increment=1; | ||
|
||
drop event if exists onlineddl_test; |
1 change: 1 addition & 0 deletions
1
go/test/endtoend/onlineddl/vrepl_suite/testdata/fail-nullable-unique-key/expect_failure
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 @@ | ||
found no possible |
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
Oops, something went wrong.