Re: [BUGS] Assertion failure in current cvs

2004-01-12 Thread Tom Lane
Neil Conway <[EMAIL PROTECTED]> writes: > Is it worth including some variant of this query in the regression > tests? The information schema itself could perhaps use some regression tests. regards, tom lane ---(end of broadcast)

Re: [BUGS] data loss after vacuum

2004-01-12 Thread Bruce Momjian
Tom Lane wrote: > Allan Tong <[EMAIL PROTECTED]> writes: > > I'm not sure if this is the right list to send this, but any help > > would be appreciated. We recently encountered a problem running > > postgres where, after a vacuum, all the data in one of our tables > > was gone. Now, I guess techn

Re: [BUGS] Assertion failure in current cvs

2004-01-12 Thread Kris Jurka
On Mon, 12 Jan 2004, Neil Conway wrote: > Tom Lane <[EMAIL PROTECTED]> writes: > > Kris Jurka <[EMAIL PROTECTED]> writes: > >> When the JDBC driver tries to query the information schema running against > >> cvs head, it gets an assertion failure. > > > > Duplicated here, will fix. > > Is it wort

Re: [BUGS] Assertion failure in current cvs

2004-01-12 Thread Neil Conway
Tom Lane <[EMAIL PROTECTED]> writes: > Kris Jurka <[EMAIL PROTECTED]> writes: >> When the JDBC driver tries to query the information schema running against >> cvs head, it gets an assertion failure. > > Duplicated here, will fix. Is it worth including some variant of this query in the regression t

Re: [BUGS] dyntest.pgc not working in 7.4 ?

2004-01-12 Thread Michael Meskes
On Thu, Jan 08, 2004 at 12:05:11PM -0600, Seum-Lim Gan wrote: > After working with Bruce last night about the > src/template/solaris file, there is a new version > of the file to be used for compiling with > --enable-thread-safety. > ... > I have tested the new compile and ran both dyntest and dynt

Re: [BUGS] Assertion failure in current cvs

2004-01-12 Thread Tom Lane
Kris Jurka <[EMAIL PROTECTED]> writes: > When the JDBC driver tries to query the information schema running against > cvs head, it gets an assertion failure. Duplicated here, will fix. regards, tom lane ---(end of broadcast)

[BUGS] COPY allows parameters which corrupt output

2004-01-12 Thread Kris Jurka
COPY allows DELIMITER and NULL to be specified which don't allow the data to be copied back in properly. Using any delimiter that could be part of a backslash escape sequence (\n \0 \t) will break if any of the data has a character matching the delimiter because it will be escaped and then be rea

[BUGS] Assertion failure in current cvs

2004-01-12 Thread Kris Jurka
When the JDBC driver tries to query the information schema running against cvs head, it gets an assertion failure. The query in question is the ugly: SELECT NULL AS TABLE_CAT, n.nspname AS TABLE_SCHEM, c.relname AS TABLE_NAME, CASE n.nspname LIKE 'pg\\_%' OR n.nspname = 'information_schema' WH

[BUGS] PQconndefaults() error, don't show PGCLIENTENCODING

2004-01-12 Thread Pavel Stehule
Hello I work on small patch for pg_dump, which adds information about used encoding into dump file. I can get current encoding via SQL "SHOW client_encoding", but I can (propably) PQconndefaults too? Is it true? I wrote small program which show env vars from PQconninfoOption struct. But