mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 05:22:17 +00:00
Fix flaky tests
This commit is contained in:
parent
58e6bd82cf
commit
b2c9cb0653
@ -1,8 +1,6 @@
|
|||||||
-- https://github.com/ClickHouse/ClickHouse/issues/54317
|
-- https://github.com/ClickHouse/ClickHouse/issues/54317
|
||||||
SET allow_experimental_analyzer=1;
|
SET allow_experimental_analyzer=1;
|
||||||
DROP DATABASE IF EXISTS 03049_database;
|
DROP DATABASE IF EXISTS 03049_database;
|
||||||
DROP TABLE IF EXISTS 03049_database.l;
|
|
||||||
DROP TABLE IF EXISTS 03049_database.r;
|
|
||||||
|
|
||||||
CREATE DATABASE 03049_database;
|
CREATE DATABASE 03049_database;
|
||||||
USE 03049_database;
|
USE 03049_database;
|
||||||
@ -14,5 +12,3 @@ select * from l left join r on l.y = r.y where r.ty >= 2019;
|
|||||||
select * from 03049_database.l left join 03049_database.r on l.y = r.y where r.ty >= 2019;
|
select * from 03049_database.l left join 03049_database.r on l.y = r.y where r.ty >= 2019;
|
||||||
|
|
||||||
DROP DATABASE IF EXISTS 03049_database;
|
DROP DATABASE IF EXISTS 03049_database;
|
||||||
DROP TABLE IF EXISTS 03049_database.l;
|
|
||||||
DROP TABLE IF EXISTS 03049_database.r;
|
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
-- https://github.com/ClickHouse/ClickHouse/issues/6571
|
-- https://github.com/ClickHouse/ClickHouse/issues/6571
|
||||||
|
-- Tag: no-replicated-database
|
||||||
|
|
||||||
SET allow_experimental_analyzer=1;
|
SET allow_experimental_analyzer=1;
|
||||||
CREATE TABLE LINEITEM_shard ON CLUSTER test_shard_localhost
|
CREATE TABLE LINEITEM_shard ON CLUSTER test_shard_localhost
|
||||||
(
|
(
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
-- https://github.com/ClickHouse/ClickHouse/issues/47432
|
-- https://github.com/ClickHouse/ClickHouse/issues/47432
|
||||||
SET allow_experimental_analyzer=1;
|
SET allow_experimental_analyzer=1;
|
||||||
create or replace table t1
|
create table t1
|
||||||
engine = MergeTree()
|
engine = MergeTree()
|
||||||
order by tuple()
|
order by tuple()
|
||||||
as
|
as
|
||||||
select 1 as user_id, 2 as level;
|
select 1 as user_id, 2 as level;
|
||||||
|
|
||||||
|
|
||||||
create or replace table t2
|
create table t2
|
||||||
engine = MergeTree()
|
engine = MergeTree()
|
||||||
order by tuple()
|
order by tuple()
|
||||||
as
|
as
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
-- https://github.com/ClickHouse/ClickHouse/issues/61014
|
-- https://github.com/ClickHouse/ClickHouse/issues/61014
|
||||||
SET allow_experimental_analyzer=1;
|
SET allow_experimental_analyzer=1;
|
||||||
|
|
||||||
|
DROP DATABASE IF EXISTS test_03088;
|
||||||
create database test_03088;
|
create database test_03088;
|
||||||
|
|
||||||
create table test_03088.a (i int) engine = Log();
|
create table test_03088.a (i int) engine = Log();
|
||||||
|
Loading…
Reference in New Issue
Block a user