[COMMITTERS] pgsql: Update to 8.0.1.

2005-03-15 Thread Bruce Momjian
Log Message:
---
Update to 8.0.1.

Modified Files:
--
pgsql/doc:
FAQ (r1.336 -> r1.337)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/FAQ.diff?r1=1.336&r2=1.337)
pgsql/doc/src/FAQ:
FAQ.html (r1.293 -> r1.294)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/FAQ/FAQ.html.diff?r1=1.293&r2=1.294)

---(end of broadcast)---
TIP 6: Have you searched our list archives?

   http://archives.postgresql.org


[COMMITTERS] pgsql: Wrap the implementation of fork_process() inside #ifndef WIN32 --

2005-03-15 Thread Neil Conway
Log Message:
---
Wrap the implementation of fork_process() inside #ifndef WIN32 -- this
should hopefully unbreak the Win32 build. Apologies for breaking it in
the first place.

Modified Files:
--
pgsql/src/backend/postmaster:
fork_process.c (r1.2 -> r1.3)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/postmaster/fork_process.c.diff?r1=1.2&r2=1.3)

---(end of broadcast)---
TIP 9: the planner will ignore your desire to choose an index scan if your
  joining column's datatypes do not match


[COMMITTERS] pgsql: Prevent locale-aware handling of upper, lower, and initcap when

2005-03-15 Thread Bruce Momjian
Log Message:
---
Prevent locale-aware handling of upper, lower, and initcap when the
locale is C.

Backpatch to 8.0.X because some operating systems were throwing errors
for such operations, rather than ignoring the locale when it was C.

Modified Files:
--
pgsql/src/backend/utils/adt:
oracle_compat.c (r1.57 -> r1.58)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/oracle_compat.c.diff?r1=1.57&r2=1.58)
pg_locale.c (r1.30 -> r1.31)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/pg_locale.c.diff?r1=1.30&r2=1.31)
pgsql/src/include/utils:
pg_locale.h (r1.19 -> r1.20)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/utils/pg_locale.h.diff?r1=1.19&r2=1.20)

---(end of broadcast)---
TIP 9: the planner will ignore your desire to choose an index scan if your
  joining column's datatypes do not match


[COMMITTERS] pgsql: Prevent locale-aware handling of upper, lower, and initcap when

2005-03-15 Thread Bruce Momjian
Log Message:
---
Prevent locale-aware handling of upper, lower, and initcap when the
locale is C.

Backpatch to 8.0.X because some operating systems were throwing errors
for such operations, rather than ignoring the locale when it was C.

Tags:

REL8_0_STABLE

Modified Files:
--
pgsql/src/backend/utils/adt:
oracle_compat.c (r1.57 -> r1.57.4.1)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/oracle_compat.c.diff?r1=1.57&r2=1.57.4.1)
pg_locale.c (r1.30 -> r1.30.4.1)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/pg_locale.c.diff?r1=1.30&r2=1.30.4.1)
pgsql/src/include/utils:
pg_locale.h (r1.19 -> r1.19.4.1)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/utils/pg_locale.h.diff?r1=1.19&r2=1.19.4.1)

---(end of broadcast)---
TIP 6: Have you searched our list archives?

   http://archives.postgresql.org


Re: [COMMITTERS] pgsql: Prevent locale-aware handling of upper, lower,

2005-03-15 Thread Neil Conway
Bruce Momjian wrote:
Prevent locale-aware handling of upper, lower, and initcap when the
locale is C.
I get this warning:
/home/neilc/pgsql/src/backend/utils/adt/oracle_compat.c: In function 
`lower':
/home/neilc/pgsql/src/backend/utils/adt/oracle_compat.c:170: warning: 
implicit declaration of function `lc_ctype_is_c'

-Neil
---(end of broadcast)---
TIP 4: Don't 'kill -9' the postmaster


Re: [COMMITTERS] pgsql: Prevent locale-aware handling of upper, lower,

2005-03-15 Thread Bruce Momjian

OK, fixed in CVS HEAD and 8.0.X.

---

Neil Conway wrote:
> Bruce Momjian wrote:
> > Prevent locale-aware handling of upper, lower, and initcap when the
> > locale is C.
> 
> I get this warning:
> 
> /home/neilc/pgsql/src/backend/utils/adt/oracle_compat.c: In function 
> `lower':
> /home/neilc/pgsql/src/backend/utils/adt/oracle_compat.c:170: warning: 
> implicit declaration of function `lc_ctype_is_c'
> 
> -Neil
> 

-- 
  Bruce Momjian|  http://candle.pha.pa.us
  [email protected]   |  (610) 359-1001
  +  If your life is a hard drive, |  13 Roberts Road
  +  Christ can be your backup.|  Newtown Square, Pennsylvania 19073

---(end of broadcast)---
TIP 3: if posting/reading through Usenet, please send an appropriate
  subscribe-nomail command to [EMAIL PROTECTED] so that your
  message can get through to the mailing list cleanly


[COMMITTERS] pgsql: Add missing include for new lc_ctype_is_c() function.

2005-03-15 Thread Bruce Momjian
Log Message:
---
Add missing include for new lc_ctype_is_c() function.

Per Neil.

Tags:

REL8_0_STABLE

Modified Files:
--
pgsql/src/backend/utils/adt:
oracle_compat.c (r1.57.4.1 -> r1.57.4.2)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/oracle_compat.c.diff?r1=1.57.4.1&r2=1.57.4.2)

---(end of broadcast)---
TIP 4: Don't 'kill -9' the postmaster


[COMMITTERS] pgsql: Add missing include for new lc_ctype_is_c() function.

2005-03-15 Thread Bruce Momjian
Log Message:
---
Add missing include for new lc_ctype_is_c() function.

Per Neil.

Modified Files:
--
pgsql/src/backend/utils/adt:
oracle_compat.c (r1.58 -> r1.59)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/oracle_compat.c.diff?r1=1.58&r2=1.59)

---(end of broadcast)---
TIP 8: explain analyze is your friend


[COMMITTERS] pgsql: Fix snprintf to handle %$ properly by storing and reordering the

2005-03-15 Thread Bruce Momjian
Log Message:
---
Fix snprintf to handle %$ properly by storing and reordering the
arguments.

Nicolai Tufar

Modified Files:
--
pgsql/src/port:
snprintf.c (r1.19 -> r1.20)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/port/snprintf.c.diff?r1=1.19&r2=1.20)

---(end of broadcast)---
TIP 8: explain analyze is your friend


[COMMITTERS] pgsql: Add CVS \r\n regression tests.

2005-03-15 Thread Bruce Momjian
Log Message:
---
Add CVS \r\n regression tests.

Andrew Dunstan

Modified Files:
--
pgsql/src/test/regress/input:
copy.source (r1.10 -> r1.11)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/test/regress/input/copy.source.diff?r1=1.10&r2=1.11)
pgsql/src/test/regress/output:
copy.source (r1.8 -> r1.9)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/test/regress/output/copy.source.diff?r1=1.8&r2=1.9)

---(end of broadcast)---
TIP 5: Have you checked our extensive FAQ?

   http://www.postgresql.org/docs/faq