Results 69 comments of Doctrine Bot

Comment created by @ocramius: What are the contents of `pg*catalog.pg*class` ?

Comment created by intellix: Uploaded CSV of that table

Comment created by intellix: After running the subquery as suggested in IRC: ``` SELECT c.oid FROM pg*catalog.pg_class c, pg_catalog.pg*namespace n WHERE n.nspname NOT IN ('pg*catalog', 'information_schema', 'pg_toast') AND c.relname =...

Comment created by @ocramius: Can you run the query: `````` SELECT c.* FROM pg*catalog.pg_class c, pg_catalog.pg*namespace n WHERE n.nspname NOT IN ('pg*catalog', 'information_schema', 'pg*toast') AND c.relname = 'state' AND n.nspname...

Comment created by intellix: ``` relname varchar, relnamespace oid, reltype oid, reloftype oid, relowner oid, relam oid, relfilenode oid, reltablespace oid, relpages int, reltuples real, relallvisible int, reltoastrelid oid, reltoastidxid...

Comment created by intellix: My ZF2 onBootstrap as well, in case it changes anything: ``` php

Comment created by @deeky666: Most probably also affects 2.4 as the codebase has not changed at the critical places. Possibly 2.3 is also affected by this. Could need a check.

Comment created by jaroslav: Can confirm, that problem still exists on both 2.4.4 and 2.5.0. Is there any progress on this?

Comment created by jaroslav: Replacing "=" with "IN" in [PostreSqlPlatform.php 290 line](https://github.com/doctrine/dbal/blob/master/lib/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php#L290) fixes the problem. I haven't tested it thoroughly, but it looks like it's working (I've been able to...

- is referenced by [DBAL-96: Make approach towards identifier quoting consistent](http://www.doctrine-project.org/jira/browse/DBAL-96)