COPY doesn't like my dates on STDIN - Mailing list pgsql-novice

From James Long
Subject COPY doesn't like my dates on STDIN
Date
Msg-id 20080319033141.GA63526@ns.umpquanet.com
Whole thread Raw
Responses Re: COPY doesn't like my dates on STDIN  (James Long <pgsql-novice@museum.rain.com>)
List pgsql-novice
I'm trying to

copy temp_table ( id, date_created ) from stdin;
TME     2008-03-18
\.

pgsql says:

ERROR:  column "date_created" is of type date but expression is of type character
HINT:  You will need to rewrite or cast the expression.

I basically grok what it is saying, but the "expression" is in the
STDIN stream.  How do I cast that?  And I also don't get why my
pg_dump backup scripts use this same syntax but I can't.

One such pg_dump-created file says:

COPY tickets (ticket_number, reservation_number, travel_date, issue_date, ... )
FROM stdin;
2115492091826   11ACFD  2006-08-28      \N      ...

Certainly, no criticism intended.  I really enjoy PG.  Just
confusion on my part is all.

Thank you,

Jim

pgsql-novice by date:

Previous
From: John DeSoi
Date:
Subject: Re: Database Classes and prepared statements
Next
From: James Long
Date:
Subject: Re: COPY doesn't like my dates on STDIN