mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
Update tests
This commit is contained in:
parent
d485e36f20
commit
a6fe66dd57
@ -1,3 +1,4 @@
|
|||||||
|
set allow_suspicious_low_cardinality_types=1;
|
||||||
drop table if exists lc_lambda;
|
drop table if exists lc_lambda;
|
||||||
create table lc_lambda (arr Array(LowCardinality(UInt64))) engine = Memory;
|
create table lc_lambda (arr Array(LowCardinality(UInt64))) engine = Memory;
|
||||||
insert into lc_lambda select range(number) from system.numbers limit 10;
|
insert into lc_lambda select range(number) from system.numbers limit 10;
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
set allow_suspicious_low_cardinality_types=1;
|
||||||
drop table if exists lc_left_aj;
|
drop table if exists lc_left_aj;
|
||||||
CREATE TABLE lc_left_aj
|
CREATE TABLE lc_left_aj
|
||||||
(
|
(
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
SET allow_suspicious_low_cardinality_types=1;
|
||||||
|
|
||||||
DROP TABLE IF EXISTS single_column_bloom_filter;
|
DROP TABLE IF EXISTS single_column_bloom_filter;
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
SET allow_suspicious_low_cardinality_types=1;
|
||||||
|
|
||||||
DROP TABLE IF EXISTS lc_nullable;
|
DROP TABLE IF EXISTS lc_nullable;
|
||||||
|
|
||||||
CREATE TABLE lc_nullable (
|
CREATE TABLE lc_nullable (
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
SET allow_suspicious_low_cardinality_types=1;
|
||||||
|
|
||||||
DROP TABLE IF EXISTS t_01411;
|
DROP TABLE IF EXISTS t_01411;
|
||||||
|
|
||||||
CREATE TABLE t_01411(
|
CREATE TABLE t_01411(
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
set allow_suspicious_low_cardinality_types=1;
|
||||||
drop table if exists perf_lc_num;
|
drop table if exists perf_lc_num;
|
||||||
|
|
||||||
CREATE TABLE perf_lc_num( num UInt8, arr Array(LowCardinality(Int64)) default [num] ) ENGINE = TinyLog;
|
CREATE TABLE perf_lc_num( num UInt8, arr Array(LowCardinality(Int64)) default [num] ) ENGINE = TinyLog;
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
SET allow_suspicious_low_cardinality_types=1;
|
||||||
DROP TABLE IF EXISTS t_nested_tuple;
|
DROP TABLE IF EXISTS t_nested_tuple;
|
||||||
|
|
||||||
CREATE TABLE t_nested_tuple
|
CREATE TABLE t_nested_tuple
|
||||||
|
Loading…
Reference in New Issue
Block a user