mysql - Error adding index to mysqlcluster database table -


i using root user (on sql node) , cannot alter/modify database tables accessed remotely. database table accessed locally can modified though. view concurrently used database used show full processlist . below command/errors occured. how past these errors ?

 mysql> alter table `sks_staff_office` add index `pid_index` (pid);     error 1296 (hy000): got error 156 'unknown error code' ndbcluster      mysql> create online index pid_index on sks_staff_office(pid);     error 1296 (hy000): got error 156 'unknown error code' ndbcluster      mysql> alter online table `sks_staff_office` add index `pid_index` (pid);     error 1296 (hy000): got error 156 'unknown error code' ndbcluster 

thank you.


Popular posts from this blog

python 3.x - PyQt5 - Signal : pyqtSignal no method connect -

Apache NiFi ExecuteScript: Groovy script to replace Json values via a mapping file -