clickhouse: fixed function hex [#CONV-6788].

This commit is contained in:
Michael Kolupaev 2013-03-07 12:11:44 +00:00
parent e3b48d5324
commit 934566de4a

View File

@ -263,6 +263,8 @@ public:
if (byte == 0 && !was_nonzero && offset)
continue;
was_nonzero = true;
*(out++) = digit[byte >> 4];
*(out++) = digit[byte & 15];
}