Re: pg_dump without setting search_path

2022-08-24 Thread Adrian Klaver
On 8/24/22 20:39, gzh wrote: Hi Tom, Thank you for your prompt response. When I use pg_dump to export schema from an older version of PostgreSQL 8.2.3 , it adds the following line at the beginning: SET search_path = public, pg_catalog; Is it possible set an option where pg_dump will add thi

Re: pg_dump without setting search_path

2022-08-24 Thread David G. Johnston
On Wednesday, August 24, 2022, gzh wrote: > > When I use pg_dump to export schema from an older version of PostgreSQL > 8.2.3 , it adds the following line at the beginning: > > SET search_path = public, pg_catalog; > > Is it possible set an option where pg_dump will add this line in > PostgreSQL 1

Re: pg_dump without setting search_path

2022-08-24 Thread Tom Lane
gzh writes: > When I use pg_dump to export schema from a database, it adds the following > line at the beginning: > SELECT pg_catalog.set_config('search_path', '', false); > Is it possible set an option where pg_dump will not add this line? No. It's a security precaution. > It is causing issu