We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The original issue is from the parent project: polardb/polardbx#3
Repro steps:
Create a table: CREATE TABLE test ( col1 varchar(255) DEFAULT NULL, col2 varchar(255) NOT NULL, id int(11) NOT NULL AUTO_INCREMENT, PRIMARY KEY (id,col2) ) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
Drop the primary key, drop a column and add a new primary key: ALTER TABLE test DROP PRIMARY KEY, DROP COLUMN col2, ADD PRIMARY KEY (id) USING BTREE;
Error: Failed to execute the DDL task. Caused by: Illegal Capacity: -1
"SHOW FULL DDL" returns a PAUSED DDL job.
Cannot rollback the DDL job via CANCEL DDL.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The original issue is from the parent project:
polardb/polardbx#3
Repro steps:
Create a table:
CREATE TABLE test (
col1 varchar(255) DEFAULT NULL,
col2 varchar(255) NOT NULL,
id int(11) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (id,col2)
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
Drop the primary key, drop a column and add a new primary key:
ALTER TABLE test
DROP PRIMARY KEY,
DROP COLUMN col2,
ADD PRIMARY KEY (id) USING BTREE;
Error: Failed to execute the DDL task. Caused by: Illegal Capacity: -1
"SHOW FULL DDL" returns a PAUSED DDL job.
Cannot rollback the DDL job via CANCEL DDL.
The text was updated successfully, but these errors were encountered: