Project

General

Profile

Actions

Bug #81578

closed

sys_refindex CHANGE ref_string: Index column size too large

Added by Adrian Dymorz almost 7 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2017-06-14
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
8
PHP Version:
7.0
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

Database analyzer generates the following SQL command

ALTER TABLE sys_refindex CHANGE ref_string `ref_string` VARCHAR(1024) DEFAULT '' NOT NULL 
Current value: ref_string VARCHAR(200) DEFAULT '' NOT NULL COLLATE utf8_general_ci

which leads to the error message


Database update failed
Error: Index column size too large. The maximum column size is 767 bytes.

MariaDB Server version: 10.0.29-MariaDB-0+deb8u1
T3 8.7.1


Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Feature #84706: Database analyser can't detect index length changesClosed2018-04-12

Actions
Actions #1

Updated by Adrian Dymorz almost 7 years ago

As a workaround, https://stackoverflow.com/a/30767600/7173655 helped.

ALTER TABLE sys_refindex ROW_FORMAT=DYNAMIC;
Actions #2

Updated by Morton Jonuschat almost 7 years ago

  • Status changed from New to Needs Feedback

This is probably happening due to a dependency between the index and the alteration of the column. If you check the install tool you should see a change to the index as well (limiting the length of the prefix on ref_string). This change needs to be done before altering the column, then the update should work.

Actions #3

Updated by Riccardo De Contardi over 6 years ago

  • Status changed from Needs Feedback to Closed

90 days without feedback -> closing it.

If you think that this is the wrong decision or experience the issue again or have more information about how to reproduce it, please reopen it or open a new issue with a reference to this one. Thank you.

Actions #4

Updated by Henri Nathanson over 5 years ago

  • Related to Feature #84706: Database analyser can't detect index length changes added
Actions #5

Updated by Henri Nathanson over 5 years ago

  • Related to Feature #84706: Database analyser can't detect index length changes added
Actions #6

Updated by Henri Nathanson over 5 years ago

  • Related to deleted (Feature #84706: Database analyser can't detect index length changes)
Actions

Also available in: Atom PDF