postgres db に 1 時間ごとの読み取り値を挿入する python スクリプトがあります。2010-03-28 に失敗しています。postgres は 01:00:00 と 02:00:00 の両方を 02:00:00 としてどのように解釈しますか。私は何を間違っていますか(ps:これより前の他の日付でも機能します)
select to_timestamp('28/03/2010 01:00:00','DD/MM/YYYY HH24:MI:SS');
to_timestamp
------------------------
2010-03-28 02:00:00+01
(1 row)
select to_timestamp('28/03/2010 02:00:00','DD/MM/YYYY HH24:MI:SS');
to_timestamp
------------------------
2010-03-28 02:00:00+01
(1 row)