mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
More tests into skip-list
This commit is contained in:
parent
321f65a649
commit
ab6371fbf5
@ -70,4 +70,5 @@ SELECT count(*) FROM bitmap_test WHERE 0 = bitmapHasAny((SELECT groupBitmapState
|
||||
|
||||
SELECT bitmapToArray(bitmapAnd(groupBitmapState(uid), bitmapBuild(CAST([4294967296, 4294967297, 4294967298], 'Array(UInt64)')))) FROM bitmap_test GROUP BY city_id;
|
||||
|
||||
|
||||
DROP TABLE bitmap_state_test;
|
||||
DROP TABLE bitmap_test;
|
||||
|
@ -50,4 +50,4 @@ $CLICKHOUSE_CLIENT -q "SELECT if(quantile(0.5)(query_duration_ms) < $max_time_ms
|
||||
|
||||
$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"
|
||||
|
||||
$CLICKHOUSE_CLIENT -q "DROP DATABASE $db"
|
||||
$CLICKHOUSE_CLIENT -q "DROP DATABASE IF EXISTS $db"
|
||||
|
@ -84,3 +84,6 @@ function test_with_engine {
|
||||
test_with_engine TinyLog
|
||||
test_with_engine StripeLog
|
||||
test_with_engine Log
|
||||
|
||||
$CLICKHOUSE_CLIENT -q "DROP TABLE IF EXISTS t1"
|
||||
$CLICKHOUSE_CLIENT -q "DROP TABLE IF EXISTS t2"
|
||||
|
@ -103,6 +103,14 @@
|
||||
"01482_move_to_prewhere_and_cast" /// bug, shoud be fixed
|
||||
],
|
||||
"antlr": [
|
||||
"00186_very_long_arrays",
|
||||
"00233_position_function_sql_comparibilty",
|
||||
"00417_kill_query",
|
||||
"00534_functions_bad_arguments12",
|
||||
"00534_functions_bad_arguments2",
|
||||
"00534_functions_bad_arguments4",
|
||||
"00534_functions_bad_arguments9",
|
||||
"00564_temporary_table_management",
|
||||
"00626_replace_partition_from_table_zookeeper",
|
||||
"00652_replicated_mutations_zookeeper",
|
||||
"00687_top_and_offset",
|
||||
@ -125,6 +133,7 @@
|
||||
"00975_indices_mutation_replicated_zookeeper",
|
||||
"00975_values_list",
|
||||
"00976_system_stop_ttl_merges",
|
||||
"00977_int_div",
|
||||
"00978_table_function_values_alias",
|
||||
"00980_merge_alter_settings",
|
||||
"00980_zookeeper_merge_tree_alter_settings",
|
||||
@ -181,6 +190,7 @@
|
||||
"01145_with_fill_const",
|
||||
"01149_zookeeper_mutation_stuck_after_replace_partition",
|
||||
"01150_ddl_guard_rwr",
|
||||
"01185_create_or_replace_table",
|
||||
"01187_set_profile_as_setting",
|
||||
"01188_attach_table_from_path",
|
||||
"01190_full_attach_syntax",
|
||||
@ -203,8 +213,8 @@
|
||||
"01278_min_insert_block_size_rows_for_materialized_views",
|
||||
"01280_min_map_max_map",
|
||||
"01280_null_in",
|
||||
"01280_ttl_where_group_by",
|
||||
"01280_ttl_where_group_by_negative",
|
||||
"01280_ttl_where_group_by",
|
||||
"01280_unicode_whitespaces_lexer",
|
||||
"01292_create_user",
|
||||
"01293_create_role",
|
||||
@ -228,9 +238,10 @@
|
||||
"01378_alter_rename_with_ttl_zookeeper",
|
||||
"01379_with_fill_several_columns",
|
||||
"01397_in_bad_arguments",
|
||||
"01412_mod_float",
|
||||
"01415_table_function_view",
|
||||
"01417_freeze_partition_verbose",
|
||||
"01417_freeze_partition_verbose_zookeeper",
|
||||
"01417_freeze_partition_verbose",
|
||||
"01419_merge_tree_settings_sanity_check",
|
||||
"01430_modify_sample_by_zookeeper",
|
||||
"01447_json_strings",
|
||||
@ -243,14 +254,15 @@
|
||||
"01463_test_alter_live_view_refresh",
|
||||
"01465_ttl_recompression",
|
||||
"01470_columns_transformers",
|
||||
"01470_columns_transformers2",
|
||||
"01470_explain",
|
||||
"01470_show_databases_like",
|
||||
"01470_test_insert_select_asterisk",
|
||||
"01491_nested_multiline_comments",
|
||||
"01493_table_function_null",
|
||||
"01495_subqueries_in_with_statement",
|
||||
"01495_subqueries_in_with_statement_2",
|
||||
"01495_subqueries_in_with_statement_3",
|
||||
"01495_subqueries_in_with_statement",
|
||||
"01501_clickhouse_client_INSERT_exception",
|
||||
"01504_compression_multiple_streams",
|
||||
"01508_explain_header",
|
||||
@ -280,14 +292,23 @@
|
||||
"01582_distinct_optimization",
|
||||
"01590_countSubstrings",
|
||||
"01593_insert_settings",
|
||||
"01594_too_low_memory_limits",
|
||||
"01596_setting_limit_offset",
|
||||
"01600_log_queries_with_extensive_info",
|
||||
"01600_quota_by_forwarded_ip",
|
||||
"01601_detach_permanently",
|
||||
"01602_show_create_view",
|
||||
"01603_read_with_backoff_bug",
|
||||
"01604_explain_ast_of_nonselect_query",
|
||||
"01605_drop_settings_profile_while_assigned",
|
||||
"01605_skip_idx_compact_parts",
|
||||
"01606_git_import"
|
||||
"01606_git_import",
|
||||
"01606_merge_from_wide_to_compact",
|
||||
"01614_with_fill_with_limit",
|
||||
"01632_max_partitions_to_read",
|
||||
"01638_div_mod_ambiguities",
|
||||
"01642_if_nullable_regression",
|
||||
"01643_system_suspend"
|
||||
],
|
||||
"parallel":
|
||||
[
|
||||
|
Loading…
Reference in New Issue
Block a user