Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions go/vt/schemadiff/schema_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -844,8 +844,8 @@ func TestMassiveSchema(t *testing.T) {
id int NOT NULL AUTO_INCREMENT,
workflow varbinary(1000) DEFAULT NULL,
source mediumblob NOT NULL,
pos varbinary(10000) NOT NULL,
stop_pos varbinary(10000) DEFAULT NULL,
pos longblob NOT NULL,
stop_pos longblob DEFAULT NULL,
max_tps bigint NOT NULL,
max_replication_lag bigint NOT NULL,
cell varbinary(1000) DEFAULT NULL,
Expand Down
2 changes: 1 addition & 1 deletion go/vt/sidecardb/schema/vreplication/schema_version.sql
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ limitations under the License.
CREATE TABLE IF NOT EXISTS schema_version
(
id INT NOT NULL AUTO_INCREMENT,
pos VARBINARY(10000) NOT NULL,
pos LONGBLOB NOT NULL,
time_updated BIGINT(20) NOT NULL,
ddl BLOB DEFAULT NULL,
schemax LONGBLOB NOT NULL,
Expand Down
4 changes: 2 additions & 2 deletions go/vt/sidecardb/schema/vreplication/vreplication.sql
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ CREATE TABLE IF NOT EXISTS vreplication
`id` int NOT NULL AUTO_INCREMENT,
`workflow` varbinary(1000) DEFAULT NULL,
`source` mediumblob NOT NULL,
`pos` varbinary(10000) NOT NULL,
`stop_pos` varbinary(10000) DEFAULT NULL,
`pos` longblob NOT NULL,
`stop_pos` longblob DEFAULT NULL,
`max_tps` bigint NOT NULL,
`max_replication_lag` bigint NOT NULL,
`cell` varbinary(1000) DEFAULT NULL,
Expand Down
Loading