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
The primary key including bl_title is to long!
It only works with
PRIMARY KEY (bl_from, bl_namespace),
KEY (bl_namespace, bl_title)
This fails:
CREATE TABLE IF NOT EXISTS intraacl_badlinks (
bl_from INT UNSIGNED NOT NULL,
bl_namespace INT NOT NULL,
bl_title VARCHAR(255) BINARY NOT NULL,
PRIMARY KEY (bl_from, bl_namespace, bl_title),
KEY (bl_namespace, bl_title)
)
MySQL meldet: Dokumentation
#1071 - Schlüssel ist zu lang. Die maximale Schlüssellänge beträgt 767
=> maximum key length 767
The text was updated successfully, but these errors were encountered:
The primary key including bl_title is to long!
It only works with
PRIMARY KEY (bl_from, bl_namespace),
KEY (bl_namespace, bl_title)
This fails:
CREATE TABLE IF NOT EXISTS intraacl_badlinks (
bl_from INT UNSIGNED NOT NULL,
bl_namespace INT NOT NULL,
bl_title VARCHAR(255) BINARY NOT NULL,
PRIMARY KEY (bl_from, bl_namespace, bl_title),
KEY (bl_namespace, bl_title)
)
MySQL meldet: Dokumentation
#1071 - Schlüssel ist zu lang. Die maximale Schlüssellänge beträgt 767
=> maximum key length 767
The text was updated successfully, but these errors were encountered: