Re: BUG #1645: Auto complete SQL "COPY" have problems.

Lists: pgsql-bugs
From: "Seamus Dean" <ljh1469(at)alibaba-inc(dot)com>
To: pgsql-bugs(at)postgresql(dot)org
Subject: BUG #1645: Auto complete SQL "COPY" have problems.
Date: 2005-05-04 06:10:46
Message-ID: 20050504061046.21AF6F0B09@svr2.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs


The following bug has been logged online:

Bug reference: 1645
Logged by: Seamus Dean
Email address: ljh1469(at)alibaba-inc(dot)com
PostgreSQL version: 8.0.2
Operating system: Red Hat Linux 7.3
Description: Auto complete SQL "COPY" have problems.
Details:

When I using the TAB key to auto complete the 'copy' command,I found that
the psql create the following sql:
COPY student FROM '/home/pgsql/student.txt' DELIMETER '';

It should be:
COPY student FROM '/home/pgsql/student.txt' DELIMITER '';

I don't kown if it's a bug.

Please let me kown what it's.Thank you.


From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Seamus Dean" <ljh1469(at)alibaba-inc(dot)com>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #1645: Auto complete SQL "COPY" have problems.
Date: 2005-05-04 14:22:52
Message-ID: 18131.1115216572@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

"Seamus Dean" <ljh1469(at)alibaba-inc(dot)com> writes:
> When I using the TAB key to auto complete the 'copy' command,I found that
> the psql create the following sql:
> COPY student FROM '/home/pgsql/student.txt' DELIMETER '';

Ooops. Thanks for the report --- will fix this.

regards, tom lane