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
CREATE INDEX idx_order_item_name ON wp_woocommerce_order_items(order_item_name) ALGORITHM=INPLACE LOCK=NONE
MariaDB server says: ALGORITHM=INPLACE is not supported for this operation. Try ALGORITHM=COPY
The text was updated successfully, but these errors were encountered:
The problem is that the table is MyISAM for MyISAM, algorithm should be COPY and lock SHARED which is the legacy behavior
Sorry, something went wrong.
No branches or pull requests
CREATE INDEX idx_order_item_name ON wp_woocommerce_order_items(order_item_name) ALGORITHM=INPLACE LOCK=NONE
MariaDB server says:
ALGORITHM=INPLACE is not supported for this operation. Try ALGORITHM=COPY
The text was updated successfully, but these errors were encountered: