Re: [COMMITTERS] pgsql: Add missing_ok option to the SQL functions for reading files.

2015-08-28 Thread Bruce Momjian
On Fri, Aug 28, 2015 at 10:17:44AM -0400, Bruce Momjian wrote: > and I see Tom added it properly: > > > > Add an optional missing_ok argument to > linkend="functions-admin-genfile-table">pg_read_file() > and related functions (Michae

Re: [COMMITTERS] pgsql: Add missing_ok option to the SQL functions for reading files.

2015-08-28 Thread Bruce Momjian
On Fri, Aug 28, 2015 at 09:41:08PM +0900, Michael Paquier wrote: > On Fri, Aug 28, 2015 at 9:39 PM, Bruce Momjian wrote: > > On Sun, Jul 5, 2015 at 08:44:41PM +0900, Michael Paquier wrote: > >> On Mon, Jun 29, 2015 at 3:39 AM, Heikki Linnakangas > >> wrote: > >> > Add missing_ok option to the SQ

Re: [COMMITTERS] pgsql: Add missing_ok option to the SQL functions for reading files.

2015-08-28 Thread Michael Paquier
On Fri, Aug 28, 2015 at 9:39 PM, Bruce Momjian wrote: > On Sun, Jul 5, 2015 at 08:44:41PM +0900, Michael Paquier wrote: >> On Mon, Jun 29, 2015 at 3:39 AM, Heikki Linnakangas >> wrote: >> > Add missing_ok option to the SQL functions for reading files. >> > >> > This makes it possible to use the

Re: [COMMITTERS] pgsql: Add missing_ok option to the SQL functions for reading files.

2015-08-28 Thread Bruce Momjian
On Sun, Jul 5, 2015 at 08:44:41PM +0900, Michael Paquier wrote: > On Mon, Jun 29, 2015 at 3:39 AM, Heikki Linnakangas > wrote: > > Add missing_ok option to the SQL functions for reading files. > > > > This makes it possible to use the functions without getting errors, if there > > is a chance tha

Re: [COMMITTERS] pgsql: Add missing_ok option to the SQL functions for reading files.

2015-07-05 Thread Michael Paquier
On Mon, Jun 29, 2015 at 3:39 AM, Heikki Linnakangas wrote: > Add missing_ok option to the SQL functions for reading files. > > This makes it possible to use the functions without getting errors, if there > is a chance that the file might be removed or renamed concurrently. > pg_rewind needs to do

[COMMITTERS] pgsql: Add missing_ok option to the SQL functions for reading files.

2015-06-28 Thread Heikki Linnakangas
Add missing_ok option to the SQL functions for reading files. This makes it possible to use the functions without getting errors, if there is a chance that the file might be removed or renamed concurrently. pg_rewind needs to do just that, although this could be useful for other purposes too. (The