Remove bad files

This commit is contained in:
avogar 2024-09-12 17:21:28 +00:00
parent 2e82e06330
commit 9c1f4f4545
3 changed files with 0 additions and 28 deletions

View File

@ -1,2 +0,0 @@
42
select 42

View File

@ -1,12 +0,0 @@
#!/usr/bin/env bash
# Tags: no-fasttest
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
# shellcheck source=../shell_config.sh
. "$CURDIR"/../shell_config.sh
$CLICKHOUSE_CLIENT --query_id="my_id_$CLICKHOUSE_TEST_UNIQUE_NAME" -q "select 42";
$CLICKHOUSE_CLIENT -q "system flush logs";
$CLICKHOUSE_CLIENT -q "select query from system.query_log where query_id='my_id_$CLICKHOUSE_TEST_UNIQUE_NAME' and type='QueryFinish'"

View File

@ -1,14 +0,0 @@
-- Tags: long, no-tsan, no-msan, no-ubsan, no-asan
set allow_experimental_dynamic_type = 1;
set merge_tree_read_split_ranges_into_intersecting_and_non_intersecting_injection_probability = 1;
drop table if exists test;
create table test (id UInt64, d Dynamic) engine=MergeTree order by id settings min_rows_for_wide_part=1, min_bytes_for_wide_part=1, use_adaptive_write_buffer_for_dynamic_subcolumns=1, min_bytes_for_full_part_storage=100000000000;
insert into test select number, if (number % 5 == 1, ('str_' || number)::LowCardinality(String)::Dynamic, number::Dynamic) from numbers(100000) settings min_insert_block_size_rows=50000;
select count() from test where dynamicType(d) == 'UInt64';
drop table test;