Re: [HACKERS] Typo fix

2016-02-29 Thread Tom Lane
Amit Langote writes: > Attached fixes a typo: Pushed, thanks. regards, tom lane -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers

[HACKERS] Typo fix

2016-02-27 Thread Amit Langote
Attached fixes a typo: /* the extra unit accounts for the autovacuum launcher */ MaxBackends = MaxConnections + autovacuum_max_workers + 1 + - +max_worker_processes; + max_worker_processes; Thanks, Amit typo.patch Description: Binary data -- Sent via pgsql-hackers maili

Re: [HACKERS] Typo fix loged vs logged.

2015-06-09 Thread Fujii Masao
On Wed, Jun 10, 2015 at 1:10 PM, David Rowley wrote: > The attached fixes a small typo in a comment. Pushed. Thanks! -- Fujii Masao -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers

[HACKERS] Typo fix loged vs logged.

2015-06-09 Thread David Rowley
The attached fixes a small typo in a comment. -- David Rowley http://www.2ndQuadrant.com/ PostgreSQL Development, 24x7 Support, Training & Services diff --git a/src/include/catalog/pg_class.h b/src/include/catalog/pg_class.h index fea99c7..e526cd9

Re: [HACKERS] Typo fix in alter_table.sgml

2015-01-14 Thread Michael Paquier
Robert Haas wrote: > But that's not a "typo" as stated in $SUBJECT but rather a "markup fix". Definitely. Thanks. -- Michael -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers

Re: [HACKERS] Typo fix in alter_table.sgml

2015-01-14 Thread Robert Haas
On Wed, Jan 14, 2015 at 2:55 AM, Michael Paquier wrote: > I noticed that SET STATISTICS was not in a block in > alter_table.sgml: > > - SET STATISTICS acquires a SHARE UPDATE EXCLUSIVE > lock. > + SET STATISTICS acquires a > + SHARE UPDATE EXCLUSIVE lock. > > That's

[HACKERS] Typo fix in alter_table.sgml

2015-01-13 Thread Michael Paquier
Hi all, I noticed that SET STATISTICS was not in a block in alter_table.sgml: - SET STATISTICS acquires a SHARE UPDATE EXCLUSIVE lock. + SET STATISTICS acquires a + SHARE UPDATE EXCLUSIVE lock. That's a small detail, still.. Patch is attached. Regards, -- Michael dif

Re: [HACKERS] Typo fix in src/backend/access/transam/recovery.conf.sample

2014-04-18 Thread Amit Langote
On Fri, Apr 18, 2014 at 7:50 PM, Magnus Hagander wrote: > > On Fri, Apr 18, 2014 at 12:24 PM, Amit Langote > wrote: >> >> Hi, >> >> Attached fixes a minor typo in >> src/backend/access/transam/recovery.conf.sample. > > > Applied, except I also rewrapped the line to make it shorter. Thanks! > Ah,

Re: [HACKERS] Typo fix in src/backend/access/transam/recovery.conf.sample

2014-04-18 Thread Magnus Hagander
On Fri, Apr 18, 2014 at 12:24 PM, Amit Langote wrote: > Hi, > > Attached fixes a minor typo in > src/backend/access/transam/recovery.conf.sample. > Applied, except I also rewrapped the line to make it shorter. Thanks! -- Magnus Hagander Me: http://www.hagander.net/ Work: http://www.redpill-

[HACKERS] Typo fix in src/backend/access/transam/recovery.conf.sample

2014-04-18 Thread Amit Langote
Hi, Attached fixes a minor typo in src/backend/access/transam/recovery.conf.sample. -- Amit recovery-conf-sample-typo-fix.patch Description: Binary data -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpr

Re: [HACKERS] Typo fix in contrib/sepgsql/relation.c

2014-03-31 Thread Heikki Linnakangas
On 04/01/2014 08:58 AM, Amit Langote wrote: Hi, Just noticed the following in contrib/sepgsql/relation.c: 1 /* - 2 * 3 * contrib/sepgsql/label.c 4 * Attached fixes this. Thanks, fixed. - Heikki -- Sent via pgsql-ha

[HACKERS] Typo fix in contrib/sepgsql/relation.c

2014-03-31 Thread Amit Langote
Hi, Just noticed the following in contrib/sepgsql/relation.c: 1 /* - 2 * 3 * contrib/sepgsql/label.c 4 * Attached fixes this. -- Amit sepgsql-file-label-fix.patch Description: Binary data -- Sent via pgsql-hackers ma

Re: [HACKERS] Typo fix in src/backend/catalog/README

2014-01-26 Thread Heikki Linnakangas
On 01/27/2014 07:22 AM, Amit Langote wrote: There is a possible typo in src/backend/catalog/README and the attached fixes it. Thanks, fixed. - Heikki -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref

[HACKERS] Typo fix in src/backend/catalog/README

2014-01-26 Thread Amit Langote
Hi, There is a possible typo in src/backend/catalog/README and the attached fixes it. -- Amit diff --git a/src/backend/catalog/README b/src/backend/catalog/README index fce01ea..7e0ddf3 100644 --- a/src/backend/catalog/README +++ b/src/backend/catalog/README @@ -92,7 +92,7 @@ them. Thus, the var

Re: [HACKERS] Typo fix in spgtextproc.c

2013-09-18 Thread Robert Haas
On Tue, Sep 17, 2013 at 5:16 AM, Etsuro Fujita wrote: > I ran into a typo. Attached is a patch. Committed, thanks. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes

[HACKERS] Typo fix in spgtextproc.c

2013-09-17 Thread Etsuro Fujita
I ran into a typo. Attached is a patch. Thanks, Best regards, Etsuro Fujita typofix-20130917.patch Description: Binary data -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers

Re: [HACKERS] Typo fix in bufmgr.c

2013-08-02 Thread Robert Haas
On Wed, Jul 31, 2013 at 5:50 AM, Etsuro Fujita wrote: > Attached is a small typo fix patch. Committed. Thanks. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to

[HACKERS] Typo fix in bufmgr.c

2013-07-31 Thread Etsuro Fujita
Attached is a small typo fix patch. Thanks, Best regards, Etsuro Fujita typofix-20130731.patch Description: Binary data -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers

Re: [HACKERS] typo fix

2012-04-15 Thread Etsuro Fujita
Thanks! Best regards, Etsuro Fujita > -Original Message- > From: Peter Eisentraut [mailto:pete...@gmx.net] > Sent: Saturday, April 14, 2012 7:07 AM > To: Etsuro Fujita > Cc: pgsql-hackers@postgresql.org > Subject: Re: [HACKERS] typo fix > > On fre, 2012-04-1

Re: [HACKERS] typo fix

2012-04-13 Thread Peter Eisentraut
On fre, 2012-04-13 at 17:27 +0900, Etsuro Fujita wrote: > This is a little patch to fix a typo in file-fdw.sgml Fixed. -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers

[HACKERS] typo fix

2012-04-13 Thread Etsuro Fujita
This is a little patch to fix a typo in file-fdw.sgml Best regards, Etsuro Fujita file_fdw_typo_fix_20120413.patch Description: Binary data -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hack