this query works fine:
"SELECT cd.display_name AS name
FROM city_dct as cd
WHERE cd.display_name LIKE :partialName"
this query does not:
"SELECT cd.display_name AS name, concat('-',cd.city_cd) AS dbIDMultiKey
FROM city_dct as cd
WHERE cd.display_name LIKE :partialName"
The metadata generated has null values for tableName and the other attributes when the select concat is created

.