BUG #6017: COPY from CSV file, WITH CSV HEADER fields order not respected

From: "pedro mg" <pedro(at)tquadrado(dot)com>
To: pgsql-bugs(at)postgresql(dot)org
Subject: BUG #6017: COPY from CSV file, WITH CSV HEADER fields order not respected
Date: 2011-05-09 18:07:25
Message-ID: 201105091807.p49I7P3F047244@wwwmaster.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs


The following bug has been logged online:

Bug reference: 6017
Logged by: pedro mg
Email address: pedro(at)tquadrado(dot)com
PostgreSQL version: 8.4.8
Operating system: Ubuntu Linux 10.10
Description: COPY from CSV file, WITH CSV HEADER fields order not
respected
Details:

Documentation says HEADER is discarded for reads. When uploading millions of
records from other legacy databases, would be an awesome addition to have
Header fields order not discarded for reads.

-Have a table: \d test1

key | integer | not null default
nextval('teste1_key_seq'::regclass)
c1 | character varying(10) |
c2 | double precision |
Indexes:
"teste1_pkey" PRIMARY KEY, btree (key)

- Have a CSV file, /tmp/test1.csv with an HEADER first line with the
following order (note:different from the table):

key,c2,c1
1,1,"Kg"
2,2,"g"
3,3,"mg"
4,4,"µg"
5,11,"l"
6,12,"ml"
7,13,"µl"

- Issue a COPY command:

# COPY test1 FROM '/tmp/test1.csv' WITH CSV HEADER

- Returns:

ERROR: invalid input syntax for type double precision: "Kg"
CONTEXT: COPY teste1, line 2, column c2: "Kg"

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Euler Taveira de Oliveira 2011-05-10 00:19:53 Re: BUG #6017: COPY from CSV file, WITH CSV HEADER fields order not respected
Previous Message Tom Lane 2011-05-09 14:00:29 Re: column check mistake or not?