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] 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] 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] 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