Re: BUG #5281: Timestamp fields not inserting from 8.3 to 8.4

Поиск
Список
Период
Сортировка
От Kevin Grittner
Тема Re: BUG #5281: Timestamp fields not inserting from 8.3 to 8.4
Дата
Msg-id 4B5053A2020000250002E588@gw.wicourts.gov
обсуждение исходный текст
Ответ на BUG #5281: Timestamp fields not inserting from 8.3 to 8.4  ("Jodi Escalante" <jescalante@assistgroup.com>)
Ответы Re: BUG #5281: Timestamp fields not inserting from 8.3 to 8.4  (Chris Travers <chris@metatrontech.com>)
Список pgsql-bugs
"Jodi Escalante" <jescalante@assistgroup.com> wrote:

> INSERT INTO assessment (id, created, taken, current_weight, note,
> assessment_type, stay_id, contact_id, estimated_discharge_date,
> cond_chf, cond_pulm_heart, cond_endocrine_other, cond_skin_temp,
> ) VALUES ( 50,  2008-01-11 15:06:40.257000 -07:00:00,
> 2008-01-11 00:00:00.000000 -07:00:00,  2000.0,  NULL,  Initial,
> 3452, 2147,  NULL,  N,  N,  N,  N)

Without quotes you've got the calculation (2008 minus 1 minus 11)
which equals the integer 1996.  It doesn't know what to make of the
number which comes next.  Try something like TIMESTAMP WITH TIME
ZONE '2008-01-11 15:06:40.257000 -0700'.  Similar issues seem to
exist with most of your other literals.

-Kevin

В списке pgsql-bugs по дате отправления:

Предыдущее
От: Heikki Linnakangas
Дата:
Сообщение: Re: BUG #5281: Timestamp fields not inserting from 8.3 to 8.4
Следующее
От: Chris Travers
Дата:
Сообщение: Re: BUG #5281: Timestamp fields not inserting from 8.3 to 8.4