remove tag ignore-order from tests

This commit is contained in:
vdimir 2022-07-06 12:34:11 +00:00 committed by Vladimir C
parent 63aebd17b2
commit dfc0d49834
23 changed files with 2 additions and 45 deletions

View File

@ -1,3 +1 @@
-- Tags: ignore-order
SELECT number, joined FROM system.numbers ANY LEFT JOIN (SELECT number * 2 AS number, number * 10 + 1 AS joined FROM system.numbers LIMIT 10) js2 USING number LIMIT 10

View File

@ -1,5 +1,3 @@
-- Tags: ignore-order
SELECT a.*, b.* FROM
(
SELECT number AS k FROM system.numbers LIMIT 10

View File

@ -1,5 +1,3 @@
-- Tags: ignore-order
SET any_join_distinct_right_table_keys = 1;
SELECT a.*, b.* FROM

View File

@ -1,5 +1,3 @@
-- Tags: ignore-order
SELECT * FROM
(
SELECT number AS k FROM system.numbers LIMIT 10

View File

@ -1,5 +1,3 @@
-- Tags: ignore-order
SELECT
1 AS DomainID,
Domain

View File

@ -1,3 +1 @@
-- Tags: ignore-order
SELECT * FROM numbers(3) AS a ANY LEFT JOIN numbers(3) AS b ON a.number = b.number ORDER BY a.number;

View File

@ -1,5 +1,3 @@
-- Tags: ignore-order
DROP TABLE IF EXISTS one;
CREATE TABLE one(dummy UInt8) ENGINE = Memory;

View File

@ -1,5 +1,3 @@
-- Tags: ignore-order
set joined_subquery_requires_alias = 0;
drop table if exists t_00725_2;

View File

@ -1,5 +1,3 @@
-- Tags: ignore-order
set joined_subquery_requires_alias = 0;
select * from (select dummy as val from system.one) any left join (select dummy as val from system.one) using val;

View File

@ -1,5 +1,3 @@
-- Tags: ignore-order
DROP TABLE IF EXISTS table1;
DROP TABLE IF EXISTS table2;

View File

@ -1,4 +1,4 @@
-- Tags: global, ignore-order
-- Tags: global
DROP TABLE IF EXISTS t_local;
DROP TABLE IF EXISTS t1_00850;

View File

@ -1,5 +1,3 @@
-- Tags: ignore-order
SET joined_subquery_requires_alias = 0;
SELECT ax, c FROM (SELECT [1,2] ax, 0 c) ARRAY JOIN ax JOIN (SELECT 0 c) USING (c);

View File

@ -1,5 +1,3 @@
-- Tags: ignore-order
drop table if exists test1_00863;
drop table if exists test2_00863;
drop table if exists test3_00863;

View File

@ -1,5 +1,3 @@
-- Tags: ignore-order
DROP TABLE IF EXISTS A;
DROP TABLE IF EXISTS B;

View File

@ -1,5 +1,3 @@
-- Tags: ignore-order
DROP TABLE IF EXISTS A;
DROP TABLE IF EXISTS B;

View File

@ -1,5 +1,3 @@
-- Tags: ignore-order
DROP TABLE IF EXISTS md;
DROP TABLE IF EXISTS tv;

View File

@ -1,5 +1,3 @@
-- Tags: ignore-order
DROP TABLE IF EXISTS A;
DROP TABLE IF EXISTS B;

View File

@ -1,5 +1,3 @@
-- Tags: ignore-order
select * from system.one cross join system.one; -- { serverError 352 }
select * from system.one cross join system.one r;
select * from system.one l cross join system.one;

View File

@ -1,5 +1,3 @@
-- Tags: ignore-order
select * from (select 0 as k, toInt8(1) as v) t1 asof join (select 0 as k, toInt8(0) as v) t2 using(k, v);
select * from (select 0 as k, toInt16(1) as v) t1 asof join (select 0 as k, toInt16(0) as v) t2 using(k, v);
select * from (select 0 as k, toInt32(1) as v) t1 asof join (select 0 as k, toInt32(0) as v) t2 using(k, v);

View File

@ -1,5 +1,4 @@
-- Tags: no-s3-storage, ignore-order
-- Tags: no-s3-storage
drop table if exists t;
create table t (s UInt16, l UInt16, projection p (select s, l order by l)) engine MergeTree order by s;

View File

@ -1,5 +1,3 @@
-- Tags: ignore-order
SELECT COLUMNS('test') FROM
(SELECT 1 AS id, 'a' AS test) a
LEFT JOIN (SELECT 1 AS id, 'b' AS test) b ON b.id = a.id

View File

@ -1,5 +1,3 @@
-- Tags: ignore-order
SET join_use_nulls = 1;
SELECT *, d.* FROM ( SELECT 1 AS id, 2 AS value ) a SEMI LEFT JOIN ( SELECT 1 AS id, 3 AS values ) AS d USING id;

View File

@ -1,5 +1,3 @@
-- Tags: ignore-order
select * from (select 0 as k, toInt128('18446744073709551617') as v) t1 asof join (select 0 as k, toInt128('18446744073709551616') as v) t2 using(k, v);
select * from (select 0 as k, toInt256('340282366920938463463374607431768211457') as v) t1 asof join (select 0 as k, toInt256('340282366920938463463374607431768211456') as v) t2 using(k, v);