[COMMITTERS] pgsql-server/src backend/utils/mb/mbutils.c ba ...

2004-03-15 Thread Tatsuo Ishii
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   04/03/15 06:41:26

Modified files:
src/backend/utils/mb: mbutils.c wchar.c 
src/bin/psql   : common.c 
src/include/mb : pg_wchar.h 
src/interfaces/libpq: fe-misc.c libpq-fe.h 

Log message:
Add PQmbdsplen() which returns the "display length" of a character.
Still some works needed:
- UTF-8, MULE_INTERNAL always returns 1


---(end of broadcast)---
TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]


[COMMITTERS] pgsql-server/doc TODO src/sgml/maintenance.sgml

2004-03-15 Thread Bruce Momjian
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   04/03/15 10:15:46

Modified files:
doc: TODO 
doc/src/sgml   : maintenance.sgml 

Log message:
Mention Linux syslog will sync lines to disk, and describe how to
disable it.


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

   http://www.postgresql.org/docs/faqs/FAQ.html


[COMMITTERS] pgsql-server/doc/src/sgml maintenance.sgml

2004-03-15 Thread Bruce Momjian
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   04/03/15 10:21:30

Modified files:
doc/src/sgml   : maintenance.sgml 

Log message:
Fix typo.


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

   http://archives.postgresql.org


[COMMITTERS] pgsql-server/ oc/src/sgml/runtime.sgml rc/back ...

2004-03-15 Thread Bruce Momjian
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   04/03/15 11:56:29

Modified files:
doc/src/sgml   : runtime.sgml 
src/backend/postmaster: postmaster.c 
src/backend/tcop: postgres.c 
src/backend/utils/error: elog.c 
src/backend/utils/misc: guc.c postgresql.conf.sample 
src/include/tcop: tcopprot.h 
src/include/utils: elog.h 

Log message:
Remove GUC log_statement, log_pid, log_timestamp, log_source_port.
Functionality superceeded by log_line_prefix.

Andrew Dunstan


---(end of broadcast)---
TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]


Re: [COMMITTERS] pgsql-server/src/test/regress expected/random. ...

2004-03-15 Thread Tom Lane
[EMAIL PROTECTED] (Bruce Momjian) writes:
>   Improve random regression tests to fail less frequently.

If you're gonna do that you should fix the discussion in the admin
guide.  It presently says that failures in random should be expected
every five to ten trials, and even hints that you should be concerned
if you never see a failure.

regards, tom lane

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

   http://archives.postgresql.org


Re: [COMMITTERS] pgsql-server/src/test/regress expected/random. ...

2004-03-15 Thread Bruce Momjian
Tom Lane wrote:
> [EMAIL PROTECTED] (Bruce Momjian) writes:
> > Improve random regression tests to fail less frequently.
> 
> If you're gonna do that you should fix the discussion in the admin
> guide.  It presently says that failures in random should be expected
> every five to ten trials, and even hints that you should be concerned
> if you never see a failure.

Oh, I didn't know we had a mention of random there too.  New text is:

The random test


 There is at least one case in the random test
 script that is intended to produce random results. This causes
 random to fail the regression test occasionally.  Typing

diff results/random.out expected/random.out

 should produce only one or a few lines of differences.  You need
 not worry unless the random test always fails in repeated
 attempts.


I wanted to reduce the frequency of random failure by doing more random
tests, and reduce the amount of confusion when it fails.  I see no way
of preventing it from ever failing.

-- 
  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 8: explain analyze is your friend


[COMMITTERS] pgsql-server/doc/src/sgml regress.sgml

2004-03-15 Thread Bruce Momjian
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   04/03/15 12:11:42

Modified files:
doc/src/sgml   : regress.sgml 

Log message:
Update random regression test text to be clearer.


---(end of broadcast)---
TIP 7: don't forget to increase your free space map settings


[COMMITTERS] pgsql-server/src/backend/main main.c

2004-03-15 Thread Bruce Momjian
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   04/03/15 12:14:26

Modified files:
src/backend/main: main.c 

Log message:
Windows uses codepages rather than the environment, so we work around
that by querying the environment explicitly first for LC_COLLATE and
LC_CTYPE. We have to do this because initdb passes those values in the
environment. If there is nothing there we fall back on the codepage.

Andrew Dunstan


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


[COMMITTERS] pgsql-server/contrib/pg_autovacuum pg_autovacu ...

2004-03-15 Thread Bruce Momjian
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   04/03/15 12:17:30

Modified files:
contrib/pg_autovacuum: pg_autovacuum.c pg_autovacuum.h 

Log message:
Handle OID's and unsigned values better in pg_autovacuum.

Matthew T. O'Connor


---(end of broadcast)---
TIP 7: don't forget to increase your free space map settings


[COMMITTERS] pgsql-server/src/backend postmaster/postmaster ...

2004-03-15 Thread Bruce Momjian
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   04/03/15 12:18:43

Modified files:
src/backend/postmaster: postmaster.c 
src/backend/storage/lmgr: s_lock.c 
src/backend/utils/init: findbe.c 

Log message:
* postmaster.c: cleanup pmdaemonize under win32; missed failure message
in CreateOptsFile
* s_lock.c: minor comment fix
* findbe.c: variables not used under win32 moved within #ifndef WIN32
case

Claudio Natoli


---(end of broadcast)---
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])


[COMMITTERS] pgsql-server/src/backend/postmaster pgstat.c

2004-03-15 Thread Bruce Momjian
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   04/03/15 12:21:37

Modified files:
src/backend/postmaster: pgstat.c 

Log message:
Check for EOF on pipe differs under win32, as it is based on a socket
implementation.

Claudio Natoli


---(end of broadcast)---
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])


[COMMITTERS] pgsql-server/doc/src/sgml runtime.sgml

2004-03-15 Thread Bruce Momjian
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   04/03/15 13:57:52

Modified files:
doc/src/sgml   : runtime.sgml 

Log message:
log_statement was not removed by the previous patch.  It only updated
its description.


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

   http://archives.postgresql.org


[COMMITTERS] pgsql-server/src/backend commands/user.c utils ...

2004-03-15 Thread Bruce Momjian
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   04/03/16 01:05:58

Modified files:
src/backend/commands: user.c 
src/backend/utils/cache: relcache.c 

Log message:
Remove double-rename used by Win32 on busy files.  Not needed anymore.


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