Has anyone encountered a bug with table names using the PostgreSQL adapter in ZF2?
I have a column named UserId and when I try to update/delete a row based on this I get this error:
ERROR: column 'userid' does not exist
as opposed to UserId.
This is my code:
$delete = $this->delete(
'Users'
, array(
'UserId = ?' => $UserId
)
);
Might have something to do with autoQuoteIdentifiers but I couldn't find much online about it.
Any ideas?
array('"UserId" = ?' => $UserId)