remove skip list for tests with polymorphic parts

This commit is contained in:
Anton Popov 2020-09-11 03:14:35 +03:00
parent fa6d88b3b2
commit 8a201a28c0
2 changed files with 0 additions and 36 deletions

View File

@ -506,15 +506,6 @@ def collect_build_flags(client):
else:
raise Exception("Cannot get inforamtion about build from server errorcode {}, stderr {}".format(clickhouse_proc.returncode, stderr))
clickhouse_proc = Popen(shlex.split(client), stdin=PIPE, stdout=PIPE, stderr=PIPE)
(stdout, stderr) = clickhouse_proc.communicate("SELECT value FROM system.merge_tree_settings WHERE name = 'min_bytes_for_wide_part'")
if clickhouse_proc.returncode == 0:
if '10485760' in stdout:
result.append(BuildFlags.POLYMORPHIC_PARTS)
else:
raise Exception("Cannot get inforamtion about build from server errorcode {}, stderr {}".format(clickhouse_proc.returncode, stderr))
return result

View File

@ -127,32 +127,5 @@
"01130_in_memory_parts_partitons",
"01225_show_create_table_from_dictionary",
"01224_no_superfluous_dict_reload"
],
"polymorphic-parts": [
/// These tests fail with compact parts, because they
/// check some implementation defined things
/// like checksums, computed granularity, ProfileEvents, etc.
"avx",
"01045_order_by_pk_special_storages",
"01042_check_query_and_last_granule_size",
"00961_checksums_in_system_parts_columns_table",
"00933_test_fix_extra_seek_on_compressed_cache",
"00926_adaptive_index_granularity_collapsing_merge_tree",
"00926_adaptive_index_granularity_merge_tree",
"00926_adaptive_index_granularity_replacing_merge_tree",
"00926_adaptive_index_granularity_versioned_collapsing_merge_tree",
"00804_test_delta_codec_compression",
"00731_long_merge_tree_select_opened_files",
"00653_verification_monotonic_data_load",
"00484_preferred_max_column_in_block_size_bytes",
"00446_clear_column_in_partition_zookeeper",
"00443_preferred_block_size_bytes",
"00160_merge_and_index_in_in",
"01055_compact_parts",
"01039_mergetree_exec_time",
"00933_ttl_simple", /// Maybe it's worth to fix it
"00753_system_columns_and_system_tables",
"01343_min_bytes_to_use_mmap_io",
"01344_min_bytes_to_use_mmap_io_index"
]
}