You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The error is the following: [PDOException] SQLSTATE[42P01]: Undefined table: 7 ERROR: relation "schema.table" does not exist
The PostgreSql#getPrimaryKey query is:
SELECTa.attnameFROM pg_index i
JOIN pg_attribute a ONa.attrelid=i.indrelidANDa.attnum= ANY(i.indkey)
WHEREi.indrelid='"schema.table"'::regclass
ANDi.indisprimary
Solution
Removing the quotes that were introduced in #82 fixes the problem.
Perhaps there is another way to support upper case table names?