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
Raised by: @sevenFH
Steps:
global_table
ERROR 1064 (HY000): op table not in schema----GLOBAL_TABLE DROP|ADD|CHANGE
alter table global_table drop name; //drop column
alter table global_table add name1 char(10); //add column
alter table global_table change name name char(15); //alter column type
alter table global_table change name name1 varchar(10); //update column name
alter table global_table drop index global_table_inx; //drop index
The text was updated successfully, but these errors were encountered:
Merge pull request actiontech#5 from actiontech/2.19.01.0/rel
4bac37e
2.19.01.0/rel
yanhuqing666
No branches or pull requests
Raised by: @sevenFH
Steps:
global_table
ERROR 1064 (HY000): op table not in schema----GLOBAL_TABLE DROP|ADD|CHANGE
alter table global_table drop name; //drop column
alter table global_table add name1 char(10); //add column
alter table global_table change name name char(15); //alter column type
alter table global_table change name name1 varchar(10); //update column name
alter table global_table drop index global_table_inx; //drop index
The text was updated successfully, but these errors were encountered: