clickhouse: fixed small bug in logical functions. [#METR-9599]

This commit is contained in:
Michael Kolupaev 2014-02-13 11:32:45 +00:00
parent a493d85ca9
commit c9bbd43433

View File

@ -149,7 +149,7 @@ private:
size_t n = res.size();
for (size_t i = 0; i < n; ++i)
{
res[i] = vec[i];
res[i] = !!vec[i];
}
return true;
}