When I try to run 'Create Table' sql on infiniDB, I get the following error:
"Error Code: 122 IDB-2010: Unable to perform DDL/DML because session 26 is currently updating another table."
The Create Table sql is nothing out of the ordinary, it's something like this:
CREATE TABLE table_name
(
col_1 smallint,
col_2 bigint,
create_date datetime
) ENGINE = InfiniDB DEFAULT CHARSET=utf8;
Why is this error occuring?