mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-19 04:42:37 +00:00
Fixing timezone option of formatDateTime
This commit is contained in:
parent
88f7b53d8c
commit
07c8c772e7
@ -538,6 +538,10 @@ private:
|
||||
*dest = '-';
|
||||
offset = -offset;
|
||||
}
|
||||
else
|
||||
{
|
||||
*dest = '+';
|
||||
}
|
||||
|
||||
writeNumber2(dest + 1, offset / 3600);
|
||||
writeNumber2(dest + 3, offset % 3600 / 60);
|
||||
|
Loading…
Reference in New Issue
Block a user