This is a discussion on pgadmin option enhancement request within the pgsql Interfaces Pgadmin Hackers forums, part of the PostgreSQL category; --> Hello, I find myself needing the ability to edit a record from within an environment where a particular schema ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hello, I find myself needing the ability to edit a record from within an environment where a particular schema is at the head of " defined searchpath" ( e.g., set searchpath=xxx01 in psql, etc.) . The reason is that I have a trigger on the table in question that assumes a particular search path rather than specifying an explicit schema qualification in front of the table name. Without that search path, the ensuing SQL throws an error because the engine can't find the table in the default search path that is used by pgadmin. Please consider the ability to define a search path for the pgadmin session as an additional option in your file Thanks, Dick Wieland ---------------------------(end of broadcast)--------------------------- TIP 1: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to majordomo@postgresql.org so that your message can get through to the mailing list cleanly |
| ||||
| > -----Original Message----- > From: pgadmin-hackers-owner@postgresql.org > [mailto > Dick Wieland > Sent: 18 July 2006 17:06 > To: pgadmin-hackers@postgresql.org > Subject: [pgadmin-hackers] pgadmin option enhancement request > > Hello, > > I find myself needing the ability to edit a record from within an > environment where a particular > schema is at the head of " defined searchpath" ( e.g., set > searchpath=xxx01 in psql, etc.) . The reason is > that I have a trigger on the table in question that assumes a > particular > search path rather than specifying an explicit schema > qualification in > front of the table name. Without that search path, the ensuing SQL > throws an error because the engine can't find the table in > the default > search path that is used by pgadmin. > > Please consider the ability to define a search path for the pgadmin > session as an additional option in your file Search path is not something that can be sensibly set in pgAdmin because it's a per database setting, and the only database pgAdmin ever knows about is the maintenance DB. We only ever set it when upgrading Slony clusters though, so you might be able to get the desired result by adding a search_path variable to either your database or login role (user) object. Regards, Dave. ---------------------------(end of broadcast)--------------------------- TIP 6: explain analyze is your friend |