You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for ex:
this command below is solution after diff.
ALTER TABLE table_name ADD INDEX matchID USING BTREE (column_text);
but i get error "BLOB/TEXT column {{columnname}} used in key specification without a key length" because that column defined "TEXT" type.
must be like command below
ALTER TABLE table_name ADD INDEX matchID USING BTREE (column_text(20));
How should I do?, please suggest.
Thanks
The text was updated successfully, but these errors were encountered:
for ex:
this command below is solution after diff.
ALTER TABLE
table_name
ADD INDEXmatchID
USING BTREE (column_text
);but i get error "BLOB/TEXT column {{columnname}} used in key specification without a key length" because that column defined "TEXT" type.
must be like command below
ALTER TABLE
table_name
ADD INDEXmatchID
USING BTREE (column_text
(20));How should I do?, please suggest.
Thanks
The text was updated successfully, but these errors were encountered: