Actions
Bug #17232
closedFieldmapping doenst work on the "right side" in where clause.
Status:
Closed
Priority:
Should have
Assignee:
Category:
Database API (Doctrine DBAL)
Target version:
-
Start date:
2007-04-23
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
SELECT a,b FROM myTbl WHERE a=b
results in:
SELECT a1,b1 FROM myTbl WHERE a1=b
having the following:
$TYPO3_CONF_VARS['EXTCONF']['dbal']['mapping'] = array (
'tmyTbl' => array (
'mapFieldNames' => array (
'a' => 'a1',
'b' => 'b1',
)
)
)
(issue imported from #M5481)
Actions