mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
d0506f0214
One of tests actually uncovered a casting error :)
6 lines
201 B
SQL
6 lines
201 B
SQL
set dialect='kusto';
|
|
print ' -- binary functions';
|
|
print binary_and(4,7), binary_or(4,7);
|
|
print binary_xor(2, 5), bitset_count_ones(42);
|
|
print bitset_count_ones(binary_shift_left(binary_and(4,7), 1));
|