2021-04-08 15:19:49 +00:00
#!/usr/bin/env bash
CURDIR = $( cd " $( dirname " ${ BASH_SOURCE [0] } " ) " && pwd )
# shellcheck source=../shell_config.sh
. " $CURDIR " /../shell_config.sh
2021-04-16 11:18:55 +00:00
$CLICKHOUSE_CLIENT -q "drop table if exists test_index"
$CLICKHOUSE_CLIENT -q "drop table if exists idx"
2021-04-16 17:19:03 +00:00
$CLICKHOUSE_CLIENT -q "create table test_index (x UInt32, y UInt32, z UInt32, t UInt32, index t_minmax t % 20 TYPE minmax GRANULARITY 2, index t_set t % 19 type set(4) granularity 2) engine = MergeTree order by (x, y) partition by (y, bitAnd(z, 3), intDiv(t, 15)) settings index_granularity = 2, min_bytes_for_wide_part = 0"
2021-04-08 15:19:49 +00:00
$CLICKHOUSE_CLIENT -q "insert into test_index select number, number > 3 ? 3 : number, number = 1 ? 1 : 0, number from numbers(20)"
$CLICKHOUSE_CLIENT -q "
2021-04-16 11:11:45 +00:00
explain indexes = 1 select *, _part from test_index where t % 19 = 16 and y > 0 and bitAnd( z, 3) != 1 and x > 10 and t % 20 > 14;
2021-04-16 09:43:11 +00:00
" | grep -A 100 " ReadFromMergeTree" # | grep -v " Description"
2021-04-08 15:19:49 +00:00
echo "-----------------"
2021-04-20 13:39:23 +00:00
$CLICKHOUSE_CLIENT -q "
explain indexes = 1, json = 1 select *, _part from test_index where t % 19 = 16 and y > 0 and bitAnd( z, 3) != 1 and x > 10 and t % 20 > 14 format TSVRaw;
" | grep -A 100 " ReadFromMergeTree" # | grep -v " Description"
echo "-----------------"
2021-04-08 15:19:49 +00:00
$CLICKHOUSE_CLIENT -q "
2021-04-08 18:19:57 +00:00
explain actions = 1 select x from test_index where x > 15 order by x;
2021-04-08 15:19:49 +00:00
" | grep -A 100 " ReadFromMergeTree"
echo "-----------------"
$CLICKHOUSE_CLIENT -q "
2021-04-08 18:19:57 +00:00
explain actions = 1 select x from test_index where x > 15 order by x desc;
2021-04-08 15:19:49 +00:00
" | grep -A 100 " ReadFromMergeTree"
2021-04-16 17:19:03 +00:00
$CLICKHOUSE_CLIENT -q "CREATE TABLE idx (x UInt32, y UInt32, z UInt32) ENGINE = MergeTree ORDER BY (x, x + y) settings min_bytes_for_wide_part = 0"
2021-04-16 11:18:55 +00:00
$CLICKHOUSE_CLIENT -q "insert into idx select number, number, number from numbers(10)"
$CLICKHOUSE_CLIENT -q "
explain indexes = 1 select z from idx where not( x + y + 1 > 2 and x not in ( 4, 5) )
" | grep -A 100 " ReadFromMergeTree"
$CLICKHOUSE_CLIENT -q "drop table if exists test_index"
$CLICKHOUSE_CLIENT -q "drop table if exists idx"