File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
yql/essentials/udfs/common/datetime2
canondata/test.test_Format_ Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -2918,7 +2918,7 @@ class TFormat: public TBoxedValue {
29182918 return Size;
29192919 }
29202920
2921- *out++ = shift > 0 ? ' +' : ' -' ;
2921+ *out++ = shift >= 0 ? ' +' : ' -' ;
29222922 shift = std::abs (shift);
29232923 out += PrintNDigits<2U >::Do (shift / 60U , out);
29242924 out += PrintNDigits<2U >::Do (shift % 60U , out);
Original file line number Diff line number Diff line change 2626 "% year 1970 monthFullName January monthShortName Jan month 01 day 01 hours 00 minutes 00 seconds 00 tz +0000 tzname GMT text"
2727 ]
2828 ];
29+ [
30+ [
31+ "% year 1970 monthFullName January monthShortName Jan month 01 day 01 hours 00 minutes 00 seconds 00 tz +0000 tzname UTC text"
32+ ]
33+ ];
2934 [
3035 [
3136 "% year 2018 monthFullName December monthShortName Dec month 12 day 01 hours 01 minutes 02 seconds 03.456789 tz +0300 tzname Europe/Moscow text"
Original file line number Diff line number Diff line change 11{"ftztimestamp" = "1970-01-01T00:00:00,GMT"};
2+ {"ftztimestamp" = "1970-01-01T00:00:00,UTC"};
23{"ftztimestamp" = "2018-12-01T01:02:03.456789,Europe/Moscow"};
34{"ftztimestamp" = "2011-03-13T02:15:00,America/Los_Angeles"};
45{"ftztimestamp" = "2011-11-06T01:15:00,America/Los_Angeles"};
You can’t perform that action at this time.
0 commit comments