BUG #6017: COPY from CSV file, WITH CSV HEADER fields order not respected - Mailing list pgsql-bugs

From pedro mg
Subject BUG #6017: COPY from CSV file, WITH CSV HEADER fields order not respected
Date
Msg-id 201105091807.p49I7P3F047244@wwwmaster.postgresql.org
Whole thread Raw
Responses Re: BUG #6017: COPY from CSV file, WITH CSV HEADER fields order not respected
List pgsql-bugs
The following bug has been logged online:

Bug reference:      6017
Logged by:          pedro mg
Email address:      pedro@tquadrado.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"

pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: column check mistake or not?
Next
From: Euler Taveira de Oliveira
Date:
Subject: Re: BUG #6017: COPY from CSV file, WITH CSV HEADER fields order not respected