Actions
Bug #66430
closedEpic #68397: Make TYPO3 work with MySQL strict mode
Avoid MySQL Warning in File Meta Index process
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
File Abstraction Layer (FAL)
Target version:
-
Start date:
2015-04-15
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
Hey guys,
the current "typo3/sysext/core/Classes/Resource/Index/MetaDataRepository.php" create a index record with "file,pid,crdate,tstamp,cruser_id". But in the database definition the "l10n_diffsource" has no default value:
...
l10n_diffsource mediumblob NOT NULL,
...
So we get this MySQL Warning: Warning 1364 Field 'l10n_diffsource' doesn't have a default value
Should we add a "DEFAULT ''" to the definition or set a empty string for the field in MetaDataRepository?
Regards,
Tim
Actions