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