2020-08-27 08:17:01 +00:00
|
|
|
/** List of tests which should be skipped depending on clickhouse build options.
|
|
|
|
* This file in json format, but javascript-style comments are allowed.
|
|
|
|
*/
|
2020-07-03 10:57:16 +00:00
|
|
|
{
|
|
|
|
"thread-sanitizer": [
|
|
|
|
"00877",
|
|
|
|
"00985",
|
|
|
|
"query_profiler",
|
|
|
|
"memory_profiler",
|
2020-08-27 08:17:01 +00:00
|
|
|
/// 01083 and 00505 and 00505 are critical and temproray disabled
|
2020-07-03 10:57:16 +00:00
|
|
|
"01083_expressions_in_engine_arguments",
|
|
|
|
"00505_shard_secure",
|
|
|
|
"00505_secure",
|
|
|
|
"01103_check_cpu_instructions_at_startup",
|
2020-08-27 08:17:01 +00:00
|
|
|
"01098_temporary_and_external_tables", /// race in openssl (should be enabled as fast as possible)
|
2020-07-03 10:57:16 +00:00
|
|
|
"00152_insert_different_granularity",
|
2020-08-13 12:32:08 +00:00
|
|
|
"00151_replace_partition_with_different_granularity",
|
2020-08-19 18:06:37 +00:00
|
|
|
"00157_cache_dictionary",
|
2020-09-07 16:03:36 +00:00
|
|
|
"01193_metadata_loading",
|
|
|
|
"01474_executable_dictionary" /// informational stderr from sanitizer at start
|
2020-07-03 10:57:16 +00:00
|
|
|
],
|
|
|
|
"address-sanitizer": [
|
|
|
|
"00877",
|
|
|
|
"query_profiler",
|
|
|
|
"memory_profiler",
|
|
|
|
"odbc_roundtrip",
|
2020-08-15 15:16:27 +00:00
|
|
|
"01103_check_cpu_instructions_at_startup",
|
|
|
|
"01193_metadata_loading"
|
2020-07-03 10:57:16 +00:00
|
|
|
],
|
|
|
|
"ub-sanitizer": [
|
|
|
|
"capnproto",
|
|
|
|
"query_profiler",
|
|
|
|
"memory_profiler",
|
|
|
|
"01103_check_cpu_instructions_at_startup",
|
2020-08-15 15:16:27 +00:00
|
|
|
"00900_orc_load",
|
|
|
|
"01193_metadata_loading"
|
2020-07-03 10:57:16 +00:00
|
|
|
],
|
|
|
|
"memory-sanitizer": [
|
|
|
|
"capnproto",
|
|
|
|
"query_profiler",
|
|
|
|
"memory_profiler",
|
|
|
|
"01103_check_cpu_instructions_at_startup",
|
2020-08-27 08:17:01 +00:00
|
|
|
"01086_odbc_roundtrip", /// can't pass because odbc libraries are not instrumented
|
|
|
|
"00877_memory_limit_for_new_delete", /// memory limits don't work correctly under msan because it replaces malloc/free
|
|
|
|
"01114_mysql_database_engine_segfault", /// it fails in _nss_files_parse_servent while using NSS from GLibc to authenticate (need to get rid of it)
|
2020-08-15 15:16:27 +00:00
|
|
|
"01193_metadata_loading"
|
2020-07-03 10:57:16 +00:00
|
|
|
],
|
|
|
|
"debug-build": [
|
|
|
|
"query_profiler",
|
|
|
|
"memory_profiler",
|
|
|
|
"00899_long_attach",
|
|
|
|
"00980_alter_settings_race",
|
|
|
|
"00834_kill_mutation_replicated_zookeeper",
|
|
|
|
"00834_kill_mutation",
|
|
|
|
"01200_mutations_memory_consumption",
|
|
|
|
"01103_check_cpu_instructions_at_startup",
|
|
|
|
"01037_polygon_dicts_",
|
2020-08-15 15:16:27 +00:00
|
|
|
"hyperscan",
|
2020-08-25 20:28:38 +00:00
|
|
|
"01193_metadata_loading",
|
|
|
|
"01396_inactive_replica_cleanup_nodes"
|
2020-07-03 10:57:16 +00:00
|
|
|
],
|
|
|
|
"unbundled-build": [
|
|
|
|
"00429",
|
|
|
|
"00877",
|
|
|
|
"pocopatch",
|
|
|
|
"parquet",
|
|
|
|
"xxhash",
|
|
|
|
"_h3",
|
|
|
|
"query_profiler",
|
|
|
|
"memory_profiler",
|
|
|
|
"orc_load",
|
|
|
|
"01033_storage_odbc_parsing_exception_check",
|
|
|
|
"avro",
|
|
|
|
"01072_optimize_skip_unused_shards_const_expr_eval",
|
|
|
|
"00505_secure",
|
|
|
|
"00505_shard_secure",
|
|
|
|
"odbc_roundtrip",
|
|
|
|
"01103_check_cpu_instructions_at_startup",
|
|
|
|
"01114_mysql_database_engine_segfault",
|
|
|
|
"00834_cancel_http_readonly_queries_on_client_close",
|
|
|
|
"_arrow",
|
|
|
|
"01099_parallel_distributed_insert_select",
|
|
|
|
"01300_client_save_history_when_terminated",
|
2020-07-06 01:30:03 +00:00
|
|
|
"orc_output",
|
2020-08-15 15:16:27 +00:00
|
|
|
"01370_client_autocomplete_word_break_characters",
|
2020-08-25 23:16:36 +00:00
|
|
|
"01193_metadata_loading",
|
|
|
|
"01455_time_zones"
|
2020-07-03 10:57:16 +00:00
|
|
|
],
|
|
|
|
"release-build": [
|
|
|
|
],
|
2020-09-24 23:04:01 +00:00
|
|
|
"database-ordinary": [
|
2020-09-25 13:18:08 +00:00
|
|
|
"00604_show_create_database",
|
2020-07-03 10:57:16 +00:00
|
|
|
"00609_mv_index_in_in",
|
|
|
|
"00510_materizlized_view_and_deduplication_zookeeper",
|
2020-09-25 13:18:08 +00:00
|
|
|
"00738_lock_for_inner_table"
|
2020-09-24 14:54:10 +00:00
|
|
|
],
|
|
|
|
"sequential":
|
|
|
|
[
|
|
|
|
/// Pessimistic list of tests which work badly in parallel.
|
|
|
|
/// Probably they need better investigation.
|
|
|
|
"01098_temporary_and_external_tables",
|
|
|
|
"01083_expressions_in_engine_arguments",
|
|
|
|
"00834_cancel_http_readonly_queries_on_client_close",
|
|
|
|
"parallel_alter",
|
|
|
|
"00417_kill_query",
|
|
|
|
"01193_metadata_loading",
|
|
|
|
"01294_lazy_database_concurrent",
|
|
|
|
"01031_mutations_interpreter_and_context",
|
|
|
|
"01305_replica_create_drop_zookeeper",
|
|
|
|
"01092_memory_profiler",
|
|
|
|
"01281_unsucceeded_insert_select_queries_counter",
|
|
|
|
"00110_external_sort",
|
|
|
|
"00682_empty_parts_merge",
|
|
|
|
"00701_rollup",
|
|
|
|
"00109_shard_totals_after_having",
|
|
|
|
"ddl_dictionaries",
|
|
|
|
"01251_dict_is_in_infinite_loop",
|
|
|
|
"01259_dictionary_custom_settings_ddl",
|
|
|
|
"01268_dictionary_direct_layout",
|
|
|
|
"00652_replicated_mutations_zookeeper",
|
|
|
|
"01238_http_memory_tracking", /// max_memory_usage_for_user can interfere another queries running concurrently
|
|
|
|
"01281_group_by_limit_memory_tracking", /// max_memory_usage_for_user can interfere another queries running concurrently
|
|
|
|
"01460_DistributedFilesToInsert",
|
|
|
|
"live_view",
|
|
|
|
"limit_memory",
|
|
|
|
"memory_limit",
|
|
|
|
"memory_leak",
|
|
|
|
/// Bad tests for parallel run found by fasttest
|
|
|
|
"00693_max_block_size_system_tables_columns",
|
|
|
|
"01414_mutations_and_errors_zookeeper",
|
|
|
|
"01013_sync_replica_timeout_zookeeper",
|
|
|
|
"01045_zookeeper_system_mutations_with_parts_names",
|
|
|
|
"00834_kill_mutation_replicated_zookeeper",
|
|
|
|
"01415_sticking_mutations",
|
|
|
|
"00933_test_fix_extra_seek_on_compressed_cache",
|
|
|
|
"00754_alter_modify_column_partitions",
|
|
|
|
"01471_calculate_ttl_during_merge",
|
|
|
|
"01378_alter_rename_with_ttl_zookeeper",
|
|
|
|
"01070_mutations_with_dependencies",
|
|
|
|
"01070_modify_ttl",
|
|
|
|
"01070_materialize_ttl",
|
|
|
|
"00976_ttl_with_old_parts",
|
|
|
|
"00933_alter_ttl",
|
|
|
|
"01277_alter_rename_column_constraint_zookeeper",
|
|
|
|
"00062_replicated_merge_tree_alter_zookeeper",
|
|
|
|
"01388_clear_all_columns",
|
|
|
|
"00699_materialized_view_mutations"
|
2020-09-25 13:16:42 +00:00
|
|
|
"00652_mergetree_mutations",
|
|
|
|
"00933_ttl_replicated_zookeeper",
|
|
|
|
"01459_manual_write_to_replicas",
|
|
|
|
"00446_clear_column_in_partition_concurrent_zookeeper",
|
|
|
|
"00446_clear_column_in_partition_zookeeper"
|
2020-07-03 10:57:16 +00:00
|
|
|
]
|
|
|
|
}
|