Re: [BUGS] pgsql8.1: About COPY Command and system clomn oid

2005-12-10 Thread Qingqing Zhou
"wangshj" <[EMAIL PROTECTED]> wrote > > oidtest=# COPY oidtest (name) WITH OIDS FROM stdin; > Enter data to be copied followed by a newline. > End with a backslash and a period on a line by itself. >>> 54513copyname >>> \. > oidtest=# INSERT INTO oidtest ( name ) VALUES( 'name2' ) ; > INSE

[BUGS] pgsql8.1: About COPY Command and system clomn oid

2005-12-09 Thread wangshj
The following is my test. oidtest=# CREATE TABLE oidtest( name text ) WITH OIDS; CREATE TABLE oidtest=# INSERT INTO oidtest ( name ) VALUES( 'name1' ) ; INSERT 54512 1 oidtest=# COPY oidtest (name) WITH OIDS FROM stdin; Enter data to be copied followed by a newline. End with a backslash and a peri