I am getting records rejected by SPICE ingestion with the error code UNSUPPORTED_DATE_VALUE.
What the “supported range of dates” is, is not defined either in
or in
Does anyone have any insight?
Thx
I am getting records rejected by SPICE ingestion with the error code UNSUPPORTED_DATE_VALUE.
What the “supported range of dates” is, is not defined either in
or in
Does anyone have any insight?
Thx
ps the dates it is complaining about are in a timestamp field in Aurora/Postgres and are 4/2/0219 and 29/1/0007.
Both are, of course, valid dates.
This code reproduces a record which will not load into SPICE.
select ‘0001-01-01’::timestamp AS test_date into test;
Henry was crowned King Henry IV on October 13, 1399. But, apparently, that is a date that cannot be stored in SPICE.
UNSUPPORTED_DATE_VALUE – A date field contains a date that is in a supported format but is not in the supported range of dates, for example “12/31/1399” or “01/01/10000”. For more information, see Using unsupported or custom dates.
Am I reading this correctly?
Oh dear! That means that every date field imported from the database needs code around it to check it’s acceptable to QS. <groan!>
Looks like my Early Modern History app will have to go on the back burner!
![]()
Thanks @Giridhar.Prabhu