This fix helps to retain the columnAlias for columns like:
SUM(Column1*Column2) as myAlias
if build via
$objQuery->setFunctionAsColumn('SUM', ['Column1*Column2'], 'myAlias');
So far the alias will be removed because a * is found.
Now it also checks if length of columnName == 1
This fix helps to retain the columnAlias for columns like:
SUM(Column1*Column2) as myAlias
if build via$objQuery->setFunctionAsColumn('SUM', ['Column1*Column2'], 'myAlias');
So far the alias will be removed because a * is found. Now it also checks if length of columnName == 1