mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Remove obsolete setting from tests
This commit is contained in:
parent
16d05bbc6d
commit
92e8fa23ba
@ -24,7 +24,6 @@ void enableAllExperimentalSettings(ContextMutablePtr context)
|
||||
context->setSetting("allow_experimental_dynamic_type", 1);
|
||||
context->setSetting("allow_experimental_json_type", 1);
|
||||
context->setSetting("allow_experimental_vector_similarity_index", 1);
|
||||
context->setSetting("allow_experimental_bigint_types", 1);
|
||||
context->setSetting("allow_experimental_window_functions", 1);
|
||||
context->setSetting("allow_experimental_geo_types", 1);
|
||||
context->setSetting("allow_experimental_map_type", 1);
|
||||
|
@ -1,6 +1,5 @@
|
||||
<test>
|
||||
<settings>
|
||||
<allow_experimental_bigint_types>1</allow_experimental_bigint_types>
|
||||
<max_threads>1</max_threads>
|
||||
<max_insert_threads>8</max_insert_threads>
|
||||
</settings>
|
||||
|
@ -1,6 +1,5 @@
|
||||
<test>
|
||||
<settings>
|
||||
<allow_experimental_bigint_types>1</allow_experimental_bigint_types>
|
||||
<max_memory_usage>15G</max_memory_usage>
|
||||
</settings>
|
||||
|
||||
|
@ -1,5 +1,3 @@
|
||||
SET allow_experimental_bigint_types=1;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS test_01035_avg (
|
||||
i8 Int8 DEFAULT i64,
|
||||
i16 Int16 DEFAULT i64,
|
||||
|
@ -20,7 +20,6 @@ SELECT sum(value) FROM (SELECT number, sum(number) AS value FROM (SELECT *, toDe
|
||||
CREATE TABLE src (n UInt64, s FixedString(16)) ENGINE=Memory;
|
||||
CREATE TABLE dst (n UInt8, s String) ENGINE = Memory;
|
||||
CREATE MATERIALIZED VIEW mv TO dst (n String) AS SELECT * FROM src;
|
||||
SET allow_experimental_bigint_types=1;
|
||||
CREATE TABLE dist (n Int128) ENGINE=Distributed(test_cluster_two_shards, currentDatabase(), mv);
|
||||
|
||||
INSERT INTO src SELECT number, toString(number) FROM numbers(1000);
|
||||
|
@ -32,8 +32,6 @@ SELECT number y, toInt128(number) - y, toInt256(number) - y, toUInt256(number) -
|
||||
SELECT -number y, toInt128(number) + y, toInt256(number) + y, toUInt256(number) + y FROM numbers_mt(10) ORDER BY number;
|
||||
|
||||
|
||||
SET allow_experimental_bigint_types = 1;
|
||||
|
||||
DROP TABLE IF EXISTS t;
|
||||
CREATE TABLE t (x UInt64, i256 Int256, u256 UInt256, d256 Decimal256(2)) ENGINE = Memory;
|
||||
|
||||
|
@ -1,5 +1,3 @@
|
||||
SET allow_experimental_bigint_types = 1;
|
||||
|
||||
CREATE TABLE 01154_test (x Int128, INDEX ix_x x TYPE bloom_filter(0.01) GRANULARITY 1) ENGINE = MergeTree() ORDER BY x SETTINGS index_granularity=8192;
|
||||
INSERT INTO 01154_test VALUES (1), (2), (3);
|
||||
SELECT x FROM 01154_test WHERE x = 1;
|
||||
|
@ -4,8 +4,6 @@
|
||||
select '';
|
||||
select '# byteSize';
|
||||
|
||||
set allow_experimental_bigint_types = 1;
|
||||
|
||||
-- numbers #0 --
|
||||
select '';
|
||||
select 'byteSize for numbers #0';
|
||||
|
@ -1,6 +1,5 @@
|
||||
-- Tags: no-parallel
|
||||
|
||||
set allow_experimental_bigint_types=1;
|
||||
drop database if exists db_01721;
|
||||
drop table if exists db_01721.table_decimal_dict;
|
||||
drop dictionary if exists db_01721.decimal_dict;
|
||||
@ -77,4 +76,3 @@ SELECT dictGet('db_01721.decimal_dict', 'Decimal32_', toUInt64(5000)),
|
||||
drop table if exists table_decimal_dict;
|
||||
drop dictionary if exists cache_dict;
|
||||
drop database if exists db_01721;
|
||||
|
||||
|
@ -1,7 +1,5 @@
|
||||
-- Tags: no-parallel
|
||||
|
||||
SET allow_experimental_bigint_types = 1;
|
||||
|
||||
DROP TABLE IF EXISTS dictionary_decimal_source_table;
|
||||
CREATE TABLE dictionary_decimal_source_table
|
||||
(
|
||||
|
@ -6,8 +6,6 @@ CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
||||
. "$CURDIR"/../shell_config.sh
|
||||
|
||||
$CLICKHOUSE_CLIENT --query="
|
||||
SET allow_experimental_bigint_types = 1;
|
||||
|
||||
DROP TABLE IF EXISTS dictionary_decimal_source_table;
|
||||
CREATE TABLE dictionary_decimal_source_table
|
||||
(
|
||||
|
Loading…
Reference in New Issue
Block a user