[PATCHES] libpq Italian Version first translation

2003-10-12 Thread [EMAIL PROTECTED]
This is a first translation of the libpq.pot file .. Regards, Fabrizio Mazzoni libpq-it.po Description: Binary data ---(end of broadcast)--- TIP 8: explain analyze is your friend

[PATCHES] libpq IT translation

2003-10-12 Thread [EMAIL PROTECTED]
Forgot to say that the it language must be added in nls.mk Regards, Fabrizio Mazzoni ---(end of broadcast)--- TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]

Re: [PATCHES] libpq Italian Version first translation

2003-10-12 Thread Peter Eisentraut
[EMAIL PROTECTED] writes: > This is a first translation of the libpq.pot file .. Installed. -- Peter Eisentraut [EMAIL PROTECTED] ---(end of broadcast)--- TIP 2: you can get off all lists at once with the unregister command (send "unregist

Re: [PATCHES] fix for strict-alias warnings

2003-10-12 Thread Bruce Momjian
Andrew Dunstan wrote: > > - Original Message - > From: "Bruce Momjian" <[EMAIL PROTECTED]> > > > > I have backed out the patch. > > > > Looking at the case in tablecmds.c and proc.c, the first was assigning a > > struct with a NodeTag pointer as its first element to another struct > > wit

Re: [PATCHES] fix for strict-alias warnings

2003-10-12 Thread Bruce Momjian
Bruce Momjian wrote: > Andrew Dunstan wrote: > > > > - Original Message - > > From: "Bruce Momjian" <[EMAIL PROTECTED]> > > > > > > I have backed out the patch. > > > > > > Looking at the case in tablecmds.c and proc.c, the first was assigning a > > > struct with a NodeTag pointer as its

Re: [PATCHES] fix for strict-alias warnings

2003-10-12 Thread Andrew Dunstan
The warning is this: command.c: In function `unescape': command.c:1283: warning: dereferencing type-punned pointer will break strict-aliasing rules p is declared thus: const unsigned char *p; If I change common.c/h so that parse_char() takes an (unsigned char **) argument, cast its 2nd

[PATCHES] Russian NLS Update: psql

2003-10-12 Thread Serguei Mokhov
Pushed to 100%. Please install. $ msgfmt -c -v psql-ru.po 453 translated messages. -- Serguei A. Mokhov psql-ru.po.gz Description: GNU Zip compressed data ---(end of broadcast)--- TIP 9: the planner will ignore your desire to choose an index scan

[PATCHES] Russian NLS: errors_ru.properties

2003-10-12 Thread Serguei Mokhov
Initial cut on JDBC messages. Please add. Thank you, -s errors_ru.properties errors_ru.properties Description: Binary data ---(end of broadcast)--- TIP 4: Don't 'kill -9' the postmaster

Re: [PATCHES] fix for strict-alias warnings

2003-10-12 Thread Tom Lane
Bruce Momjian <[EMAIL PROTECTED]> writes: > I have attached and applied the following patch to use makeNode for > structures that will later be cast to Node*, rather than having them be > allocated as stack variables. AFAICT, this adds unnecessary palloc overhead without actually reducing the risk

Re: [PATCHES] fix for strict-alias warnings

2003-10-12 Thread Andrew Dunstan
- Original Message - From: "Tom Lane" <[EMAIL PROTECTED]> > Bruce Momjian <[EMAIL PROTECTED]> writes: > > I have attached and applied the following patch to use makeNode for > > structures that will later be cast to Node*, rather than having them be > > allocated as stack variables. > >

Re: [PATCHES] fix for strict-alias warnings

2003-10-12 Thread Tom Lane
"Andrew Dunstan" <[EMAIL PROTECTED]> writes: > Even without the extra overhead, the danger of strict-aliasing is not just > related to alignment. If I understand the issue at all, it has *nothing* to do with alignment. > As I understand it, given strict-aliasing assumptions > the compiler is free