3939wait
4040
4141$CLICKHOUSE_CLIENT -q " CREATE TABLE $db .table_merge (i UInt64, d Date, s String, n Nested(i UInt8, f Float32)) ENGINE=Merge('$db ', '^table_')"
42- # FIXME the following query leads to segfault
43- # $CLICKHOUSE_CLIENT -q "SELECT count() * $count_multiplier, i, d, s, n.i, n.f FROM $db.table_merge GROUP BY i, d, s, n.i, n.f ORDER BY i"
44- $CLICKHOUSE_CLIENT -q " SELECT 10000, i, d, s, n.i, n.f FROM $db .table_1_1 GROUP BY i, d, s, n.i, n.f ORDER BY i"
42+ $CLICKHOUSE_CLIENT -q " SELECT count() * $count_multiplier , i, d, s, n.i, n.f FROM $db .table_merge GROUP BY i, d, s, n.i, n.f ORDER BY i"
4543
4644db_engine=` $CLICKHOUSE_CLIENT -q " SELECT engine FROM system.databases WHERE name='$db '" `
4745
@@ -53,7 +51,6 @@ $CLICKHOUSE_CLIENT -q "SELECT '01193_metadata_loading', $elapsed_ms FORMAT Null"
5351
5452if [[ $elapsed_ms -le $max_time_ms ]]; then echo ok; fi
5553
56- # $CLICKHOUSE_CLIENT -q "SELECT count() * $count_multiplier, i, d, s, n.i, n.f FROM $db.table_merge GROUP BY i, d, s, n.i, n.f ORDER BY i"
57- $CLICKHOUSE_CLIENT -q " SELECT 8000, i, d, s, n.i, n.f FROM $db .table_1_1 GROUP BY i, d, s, n.i, n.f ORDER BY i"
54+ $CLICKHOUSE_CLIENT -q " SELECT count() * $count_multiplier , i, d, s, n.i, n.f FROM $db .table_merge GROUP BY i, d, s, n.i, n.f ORDER BY i"
5855
5956$CLICKHOUSE_CLIENT -q " DROP DATABASE $db "
0 commit comments