ClickHouse/tests/queries/skip_list.json

164 lines
6.2 KiB
JSON

/** List of tests which should be skipped depending on clickhouse build options.
* This file in json format, but javascript-style comments are allowed.
*/
{
"thread-sanitizer": [
"00877",
"00985",
"query_profiler",
"memory_profiler",
/// 01083 and 00505 and 00505 are critical and temproray disabled
"01083_expressions_in_engine_arguments",
"00505_shard_secure",
"00505_secure",
"01103_check_cpu_instructions_at_startup",
"01098_temporary_and_external_tables", /// race in openssl (should be enabled as fast as possible)
"00152_insert_different_granularity",
"00151_replace_partition_with_different_granularity",
"00157_cache_dictionary",
"01193_metadata_loading",
"01474_executable_dictionary" /// informational stderr from sanitizer at start
],
"address-sanitizer": [
"00877",
"query_profiler",
"memory_profiler",
"odbc_roundtrip",
"01103_check_cpu_instructions_at_startup",
"01193_metadata_loading"
],
"ub-sanitizer": [
"capnproto",
"query_profiler",
"memory_profiler",
"01103_check_cpu_instructions_at_startup",
"00900_orc_load",
"01193_metadata_loading"
],
"memory-sanitizer": [
"capnproto",
"query_profiler",
"memory_profiler",
"01103_check_cpu_instructions_at_startup",
"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)
"01193_metadata_loading"
],
"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_",
"hyperscan",
"01193_metadata_loading",
"01396_inactive_replica_cleanup_nodes"
],
"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",
"orc_output",
"01370_client_autocomplete_word_break_characters",
"01193_metadata_loading",
"01455_time_zones"
],
"release-build": [
],
"database-ordinary": [
/// Inner tables of materialized views have different names
"00738_lock_for_inner_table",
"00609_mv_index_in_in",
"00510_materizlized_view_and_deduplication_zookeeper",
/// Different database engine
"00604_show_create_database",
/// UUID must be specified in ATTACH TABLE
"01190_full_attach_syntax",
/// Assumes blocking DROP
"01320_create_sync_race_condition",
/// Internal distionary name is different
"01225_show_create_table_from_dictionary",
"01224_no_superfluous_dict_reload"
],
"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"
"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"
]
}