From 7cc64d40a6802df904a684d05e4a54ab5484ddfa Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Mon, 2 May 2022 02:35:44 +0200 Subject: [PATCH] Remove tags as well --- tests/performance/constant_column_comparison.xml | 4 ---- tests/performance/constant_column_search.xml | 4 ---- tests/performance/fixed_string16.xml | 4 ---- tests/performance/ngram_distance.xml | 5 ----- tests/performance/order_by_decimals.xml | 5 ----- tests/performance/order_by_single_column.xml | 5 ----- tests/performance/order_by_tuple.xml | 5 ----- tests/performance/order_with_limit.xml | 5 ----- tests/queries/0_stateless/00911_tautological_compare.sql | 3 --- 9 files changed, 40 deletions(-) diff --git a/tests/performance/constant_column_comparison.xml b/tests/performance/constant_column_comparison.xml index c8799e2b9ed..e88451a2e48 100644 --- a/tests/performance/constant_column_comparison.xml +++ b/tests/performance/constant_column_comparison.xml @@ -1,8 +1,4 @@ - - comparison - - diff --git a/tests/performance/constant_column_search.xml b/tests/performance/constant_column_search.xml index 0fd5c6d9870..c057ce095d3 100644 --- a/tests/performance/constant_column_search.xml +++ b/tests/performance/constant_column_search.xml @@ -1,8 +1,4 @@ - - search - - 0), count(position(URL, 'google')) FROM hits_100m_single]]> diff --git a/tests/performance/fixed_string16.xml b/tests/performance/fixed_string16.xml index 5afead0a0e1..3bfbf0816d2 100644 --- a/tests/performance/fixed_string16.xml +++ b/tests/performance/fixed_string16.xml @@ -1,8 +1,4 @@ - - comparison - - 1 diff --git a/tests/performance/ngram_distance.xml b/tests/performance/ngram_distance.xml index 50ee8a1f82e..3b8406fc352 100644 --- a/tests/performance/ngram_distance.xml +++ b/tests/performance/ngram_distance.xml @@ -1,13 +1,8 @@ - - search - - 20000000000 - small_table diff --git a/tests/performance/order_by_decimals.xml b/tests/performance/order_by_decimals.xml index 20b860f0a2d..1396cc72100 100644 --- a/tests/performance/order_by_decimals.xml +++ b/tests/performance/order_by_decimals.xml @@ -1,9 +1,4 @@ - - sorting - comparison - - SELECT toInt32(number) AS n FROM numbers(10000000) ORDER BY n DESC FORMAT Null SELECT toDecimal32(number, 0) AS n FROM numbers(10000000) ORDER BY n FORMAT Null diff --git a/tests/performance/order_by_single_column.xml b/tests/performance/order_by_single_column.xml index 2b37fc195a0..722a9ba4548 100644 --- a/tests/performance/order_by_single_column.xml +++ b/tests/performance/order_by_single_column.xml @@ -1,9 +1,4 @@ - - sorting - comparison - - SELECT URL as col FROM hits_100m_single ORDER BY col LIMIT 1000,1 SELECT SearchPhrase as col FROM hits_100m_single ORDER BY col LIMIT 10000,1 SELECT SearchPhrase as col FROM hits_100m_single WHERE notEmpty(col) ORDER BY col LIMIT 10000,1 diff --git a/tests/performance/order_by_tuple.xml b/tests/performance/order_by_tuple.xml index 72fb1812bbc..74588e96869 100644 --- a/tests/performance/order_by_tuple.xml +++ b/tests/performance/order_by_tuple.xml @@ -1,8 +1,3 @@ - - sorting - comparison - - select * from numbers(300000000) order by (1 - number , number + 1 , number) limit 10; diff --git a/tests/performance/order_with_limit.xml b/tests/performance/order_with_limit.xml index d763ca03c97..1e1cb52267c 100644 --- a/tests/performance/order_with_limit.xml +++ b/tests/performance/order_with_limit.xml @@ -1,9 +1,4 @@ - - sorting - comparison - - SELECT number AS n FROM numbers_mt(200000000) ORDER BY n DESC LIMIT 10 FORMAT Null SELECT number AS n FROM numbers_mt(200000000) ORDER BY n DESC LIMIT 100 FORMAT Null SELECT number AS n FROM numbers_mt(200000000) ORDER BY n DESC LIMIT 1500 FORMAT Null diff --git a/tests/queries/0_stateless/00911_tautological_compare.sql b/tests/queries/0_stateless/00911_tautological_compare.sql index b84ee8ef6b8..f1b3fc6b625 100644 --- a/tests/queries/0_stateless/00911_tautological_compare.sql +++ b/tests/queries/0_stateless/00911_tautological_compare.sql @@ -19,9 +19,6 @@ -- column_column_comparison.xml -- --- --- comparison --- -- --