Re: [GENERAL] pg_dump does not handle default dates correctly

From: "Bryan White" <bryan(at)arcamax(dot)com>
To: <pgsql-general(at)postgreSQL(dot)org>
Subject: Re: [GENERAL] pg_dump does not handle default dates correctly
Date: 1999-08-11 20:01:09
Message-ID: 003d01bee434$41756ec0$22d260d1@arcamax.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

> If I use pg_dump to backup a database table (or just its schema) and the
> table contains a date field defaulted to the current date then the
resulting
> table create statement is invalid.
>
> These shell commands demonstarte the problem:
> createdb db1
> createdb db2
> psql -c'create table t (d date default current_date)' db1
> pg_dump -s db1 | psql db2
>
> psql reports ERROR: parser: parse error at or near "'"
>
> This is using Postgres 6.5.0

I also should have listed the create statement produced by pg_dump

CREATE TABLE "t" (
"d" date DEFAULT date( 'current'::datetime + '0 sec'));

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Justin Long 1999-08-11 21:29:13 RE: [GENERAL] Oracle vs. Postgres
Previous Message Bryan White 1999-08-11 19:45:26 pg_dump does not handle default dates correctly