Skip to content

Commit

Permalink
What else
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitamikhaylov committed Feb 21, 2024
1 parent c39f2a0 commit ac2ead1
Show file tree
Hide file tree
Showing 16 changed files with 24 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

SET send_logs_level = 'fatal';
SET allow_experimental_analyzer = 0;
SET allow_experimental_window_view = 1;
DROP DATABASE IF EXISTS {CLICKHOUSE_DATABASE:Identifier};
Expand Down
1 change: 1 addition & 0 deletions tests/queries/0_stateless/01048_window_view_parser.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
-- Tags: no-parallel

SET send_logs_level = 'fatal';
SET allow_experimental_analyzer = 0;
SET allow_experimental_window_view = 1;
DROP DATABASE IF EXISTS test_01048;
Expand Down
1 change: 1 addition & 0 deletions tests/queries/0_stateless/01053_drop_database_mat_view.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
SET send_logs_level = 'fatal';

DROP DATABASE IF EXISTS {CLICKHOUSE_DATABASE:Identifier};
set allow_deprecated_database_ordinary=1;
Expand Down
1 change: 1 addition & 0 deletions tests/queries/0_stateless/01085_window_view_attach.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

SET send_logs_level = 'fatal';
SET allow_experimental_analyzer = 0;
SET allow_experimental_window_view = 1;

Expand Down
1 change: 1 addition & 0 deletions tests/queries/0_stateless/01109_exchange_tables.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
-- Tags: no-parallel
SET send_logs_level = 'fatal';

DROP DATABASE IF EXISTS test_01109;
CREATE DATABASE test_01109 ENGINE=Atomic;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
-- Tags: zookeeper, no-replicated-database, no-parallel, no-ordinary-database

SET send_logs_level = 'fatal';

DROP TABLE IF EXISTS rmt;
DROP TABLE IF EXISTS rmt1;
DROP TABLE IF EXISTS rmt2;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
-- Tags: no-parallel

SET send_logs_level = 'fatal';
SET prefer_localhost_replica = 1;

DROP DATABASE IF EXISTS test_01155_ordinary;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
-- Tags: no-parallel

SET send_logs_level = 'fatal';

DROP DATABASE IF EXISTS dict_db_01224;
DROP DATABASE IF EXISTS dict_db_01224_dictionary;
set allow_deprecated_database_ordinary=1;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
-- Tags: no-parallel

SET send_logs_level = 'fatal';

DROP DATABASE IF EXISTS dict_db_01225;
DROP DATABASE IF EXISTS dict_db_01225_dictionary;
set allow_deprecated_database_ordinary=1;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
-- Tags: no-parallel

SET send_logs_level = 'fatal';

DROP DATABASE IF EXISTS test_01249;
set allow_deprecated_database_ordinary=1;
-- Creation of a database with Ordinary engine emits a warning.
Expand Down
2 changes: 2 additions & 0 deletions tests/queries/0_stateless/01516_create_table_primary_key.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
-- Tags: no-parallel

SET send_logs_level = 'fatal';

DROP DATABASE IF EXISTS test_01516;
set allow_deprecated_database_ordinary=1;
-- Creation of a database with Ordinary engine emits a warning.
Expand Down
2 changes: 2 additions & 0 deletions tests/queries/0_stateless/01517_drop_mv_with_inner_table.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
-- Tags: no-parallel

SET send_logs_level = 'fatal';

--
-- Atomic no SYNC
-- (should go first to check that thread for DROP TABLE does not hang)
Expand Down
2 changes: 2 additions & 0 deletions tests/queries/0_stateless/01601_detach_permanently.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
-- Tags: no-parallel

SET send_logs_level = 'fatal';

SELECT 'database atomic tests';

DROP DATABASE IF EXISTS test1601_detach_permanently_atomic;
Expand Down
2 changes: 2 additions & 0 deletions tests/queries/0_stateless/01603_rename_overwrite_bug.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
-- Tags: no-parallel

SET send_logs_level = 'fatal';

DROP database IF EXISTS test_1603_rename_bug_ordinary;
set allow_deprecated_database_ordinary=1;
-- Creation of a database with Ordinary engine emits a warning.
Expand Down
2 changes: 1 addition & 1 deletion tests/queries/0_stateless/02096_rename_atomic_hang.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- Tags: no-parallel

SET send_logs_level = 'fatal';
drop database if exists db_hang;
drop database if exists db_hang_temp;
set allow_deprecated_database_ordinary=1;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
DROP DATABASE IF EXISTS 02988_ordinary;

SET send_logs_level = 'fatal';
SET allow_deprecated_database_ordinary = 1;
-- Creation of a database with Ordinary engine emits a warning.
CREATE DATABASE 02988_ordinary ENGINE=Ordinary;
Expand Down

0 comments on commit ac2ead1

Please sign in to comment.