mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 20:42:04 +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
|
||||
SET allow_experimental_analyzer=1;
|
||||
DROP DATABASE IF EXISTS 03049_database;
|
||||
DROP TABLE IF EXISTS 03049_database.l;
|
||||
DROP TABLE IF EXISTS 03049_database.r;
|
||||
|
||||
CREATE DATABASE 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;
|
||||
|
||||
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
|
||||
-- Tag: no-replicated-database
|
||||
|
||||
SET allow_experimental_analyzer=1;
|
||||
CREATE TABLE LINEITEM_shard ON CLUSTER test_shard_localhost
|
||||
(
|
||||
|
@ -1,13 +1,13 @@
|
||||
-- https://github.com/ClickHouse/ClickHouse/issues/47432
|
||||
SET allow_experimental_analyzer=1;
|
||||
create or replace table t1
|
||||
create table t1
|
||||
engine = MergeTree()
|
||||
order by tuple()
|
||||
as
|
||||
select 1 as user_id, 2 as level;
|
||||
|
||||
|
||||
create or replace table t2
|
||||
create table t2
|
||||
engine = MergeTree()
|
||||
order by tuple()
|
||||
as
|
||||
|
@ -1,5 +1,7 @@
|
||||
-- https://github.com/ClickHouse/ClickHouse/issues/61014
|
||||
SET allow_experimental_analyzer=1;
|
||||
|
||||
DROP DATABASE IF EXISTS test_03088;
|
||||
create database test_03088;
|
||||
|
||||
create table test_03088.a (i int) engine = Log();
|
||||
|
Loading…
Reference in New Issue
Block a user