[PATCHES] Translation updates for 8.0: initdb-ru, pg_dump-ru, psql-ru

2004-08-25 Thread Serguei Mokhov
Hello, I updated all the attached .po files back to 100% an also tweaked some messages and fixed discovered typos in psql. Please apply. Thanks, -s initdb-ru.po.gz;pg_dump-ru.po.gz;psql-ru.po.gz initdb-ru.po.gz Description: GNU Zip compressed data pg_dump-ru.po.gz Description: GNU Zip compr

[PATCHES] add hint

2004-08-25 Thread James William Pye
small hint that probably helpful in most cases.. -- Regards, James William Pye Index: aclchk.c === RCS file: /projects/cvsroot/pgsql-server/src/backend/catalog/aclchk.c,v retrieving revision 1.104 diff -u -r1.104 aclchk.c ---

Re: [PATCHES] add hint

2004-08-25 Thread Tom Lane
James William Pye <[EMAIL PROTECTED]> writes: > small hint that probably helpful in most cases.. It'd be even better if it followed the message style guidelines... regards, tom lane ---(end of broadcast)--- TIP 2: you can ge

[PATCHES] Contrib -- PostgreSQL shared variables

2004-08-25 Thread pgsql
This is a first pass on a simple shared memory variable system for PostgreSQL. I would appriciate anyone interested in this functionality to rip it apart. It basically adds this functionality: SetShared('name', value); GetSharedInt('name'); SetSharedText('name); RemovedShared('name'); I also add

Re: [PATCHES] [HACKERS] Contrib -- PostgreSQL shared variables

2004-08-25 Thread Rick Gigger
LockShared('name'); [EMAIL PROTECTED] wrote: This is a first pass on a simple shared memory variable system for PostgreSQL. I would appriciate anyone interested in this functionality to rip it apart. It basically adds this functionality: SetShared('name', value); GetSharedInt('name'); SetSharedText

[PATCHES] log_line_prefix additions

2004-08-25 Thread Ed L.
This patch against 8.0.0beta1 source adds log_line_prefix options for millisecond timestamps (%m), remote host (%h), and remote port (%P). The milliseconds are useful for QPS measurements, and the remote port is worthless to us as part of %r. *** src/backend/utils/error/elog.c.orig 2004-08-2

Re: [PATCHES] [HACKERS] Contrib -- PostgreSQL shared variables

2004-08-25 Thread pgsql
> LockShared('name'); Hmmm, I thought about that, but it is *WAY* more complicated than it looks. What if after a "Lock" the process crashes before it can call "Unlock?" It is this problem that inspired the "add" and "sub" calls. > > [EMAIL PROTECTED] wrote: >> This is a first pass on a simple

Re: [PATCHES] Contrib -- PostgreSQL shared variables

2004-08-25 Thread Thomas Hallgren
[EMAIL PROTECTED] wrote: This is a first pass on a simple shared memory variable system for PostgreSQL. I would appriciate anyone interested in this functionality to rip it apart. It basically adds this functionality: SetShared('name', value); GetSharedInt('name'); SetSharedText('name); RemovedShar

Re: [PATCHES] log_line_prefix additions

2004-08-25 Thread Ed L.
Attached also is a patch to comments in sample postgresql.conf file. Subject: [PATCHES] log_line_prefix additions Date: Wednesday August 25 2004 3:26 From: "Ed L." <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] This patch against 8.0.0beta1 source adds log_line_prefix options for millisecond timestam

Re: [PATCHES] add hint

2004-08-25 Thread James William Pye
On Wed, 2004-08-25 at 13:11, Tom Lane wrote: > It'd be even better if it followed the message style guidelines... Indeed. I was unaware of the guidelines, but remedied that after a quick google. http://www.postgresql.org/docs/current/static/error-style-guide.html I assume the problem was only wit

Re: [PATCHES] log_line_prefix additions

2004-08-25 Thread Andrew Dunstan
Ed L. wrote: Attached also is a patch to comments in sample postgresql.conf file. Subject: [PATCHES] log_line_prefix additions Date: Wednesday August 25 2004 3:26 From: "Ed L." <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] This patch against 8.0.0beta1 source adds log_line_prefix options for millisec

Re: [PATCHES] add hint

2004-08-25 Thread Tom Lane
James William Pye <[EMAIL PROTECTED]> writes: > I assume the problem was only with the lack of capitalization and ending > punctuation(as hints and details are specified to have). Yup, better. Thanks. regards, tom lane ---(end of broadcast)---

Re: [PATCHES] log_line_prefix additions

2004-08-25 Thread Ed L.
On Wednesday August 25 2004 4:25, Andrew Dunstan wrote: > From: "Ed L." <[EMAIL PROTECTED]> > > >To: [EMAIL PROTECTED] > > > >This patch against 8.0.0beta1 source adds log_line_prefix options for > >millisecond timestamps (%m), remote host (%h), and remote port (%P). > > The milliseconds are usefu

Re: [PATCHES] Contrib -- PostgreSQL shared variables -with swap

2004-08-25 Thread pgsql
This new version contains, in addition to the previous version, SwapShared(..) which allows you to swap a value in a variable. sharedvar-040825.tgz Description: application/unix-tar ---(end of broadcast)--- TIP 7: don't forget to increase your free

[PATCHES] Win32 bug fix

2004-08-25 Thread Claudio Natoli
Could someone please eyeball the attached patch for errors and as a correction for: http://archives.postgresql.org/pgsql-bugs/2004-08/msg00307.php Also, could someone (Maksim?) please reproduce the bug on their system, and then confirm that the patch corrects (as I seem unable to reproduce the bu