TYPO3 lists all tables in DB compare because of COLLATE

ⅰ亾dé卋堺 提交于 2019-12-07 11:36:26

问题


I'm using TYPO3 8.7.4 with PHP 7.0.22 and MariaDB 10.2.7.

The DB Compare inside the InstallTool shows me that TYPO3 wants to alter all tables because the current value differs from the expected by the collation of the table:

ALTER TABLE `be_groups` CHANGE `title` `title` VARCHAR(50) DEFAULT '' NOT NULL 
Current value: title VARCHAR(50) DEFAULT '''' NOT NULL COLLATE utf8_general_ci

回答1:


MariaDB implemented a change to the Information Schema COLUMNS table which is not backwards compatible with the output expected from the 'original' MySQL:

https://jira.mariadb.org/browse/MDEV-13132



来源:https://stackoverflow.com/questions/45737730/typo3-lists-all-tables-in-db-compare-because-of-collate

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!