-
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.
MoveTables: allow copying all tables in a single atomic copy phase cy…
…cle (#13137) Signed-off-by: Rohit Nayak <rohit@planetscale.com>
- Loading branch information
1 parent
3404baa
commit 04ad6ec
Showing
59 changed files
with
6,196 additions
and
2,305 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
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
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,65 @@ | ||
/* | ||
Copyright 2023 The Vitess Authors. | ||
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, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package vreplication | ||
|
||
var ( | ||
initialFKSchema = ` | ||
create table parent(id int, name varchar(128), primary key(id)) engine=innodb; | ||
create table child(id int, parent_id int, name varchar(128), primary key(id), foreign key(parent_id) references parent(id) on delete cascade) engine=innodb; | ||
` | ||
initialFKData = ` | ||
insert into parent values(1, 'parent1'), (2, 'parent2'); | ||
insert into child values(1, 1, 'child11'), (2, 1, 'child21'), (3, 2, 'child32');` | ||
|
||
initialFKSourceVSchema = ` | ||
{ | ||
"tables": { | ||
"parent": {}, | ||
"child": {} | ||
} | ||
} | ||
` | ||
|
||
initialFKTargetVSchema = ` | ||
{ | ||
"sharded": true, | ||
"vindexes": { | ||
"reverse_bits": { | ||
"type": "reverse_bits" | ||
} | ||
}, | ||
"tables": { | ||
"parent": { | ||
"column_vindexes": [ | ||
{ | ||
"column": "id", | ||
"name": "reverse_bits" | ||
} | ||
] | ||
}, | ||
"child": { | ||
"column_vindexes": [ | ||
{ | ||
"column": "parent_id", | ||
"name": "reverse_bits" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
` | ||
) |
Oops, something went wrong.