You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-27 21:01:50 +03:00
MCOL-477 Change autoincrement on ALTER TABLE
This patch allows the following syntax to change the current autoincrement value for the table: ALTER TABLE table_name COMMENT='autoincrement=value'; Where "value" is the new integer to be used.
This commit is contained in:
@ -245,6 +245,11 @@ void DmlReadThread::operator()()
|
||||
rc = fWeDDLprocessor->updateSyscolumnNextvalCol(ibs, errMsg);
|
||||
break;
|
||||
}
|
||||
case WE_SVR_UPDATE_SYSCOLUMN_AUTOVAL:
|
||||
{
|
||||
rc = fWeDDLprocessor->updateSyscolumnNextval(ibs, errMsg);
|
||||
break;
|
||||
}
|
||||
case WE_SVR_UPDATE_SYSCOLUMN_DEFAULTVAL:
|
||||
{
|
||||
rc = fWeDDLprocessor->updateSyscolumnSetDefault(ibs, errMsg);
|
||||
|
Reference in New Issue
Block a user