Update tests

This commit is contained in:
avogar 2024-02-13 17:56:20 +00:00
parent d485e36f20
commit a6fe66dd57
7 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,4 @@
set allow_suspicious_low_cardinality_types=1;
drop table if exists lc_lambda;
create table lc_lambda (arr Array(LowCardinality(UInt64))) engine = Memory;
insert into lc_lambda select range(number) from system.numbers limit 10;

View File

@ -1,3 +1,4 @@
set allow_suspicious_low_cardinality_types=1;
drop table if exists lc_left_aj;
CREATE TABLE lc_left_aj
(

View File

@ -1,3 +1,4 @@
SET allow_suspicious_low_cardinality_types=1;
DROP TABLE IF EXISTS single_column_bloom_filter;

View File

@ -1,3 +1,5 @@
SET allow_suspicious_low_cardinality_types=1;
DROP TABLE IF EXISTS lc_nullable;
CREATE TABLE lc_nullable (

View File

@ -1,3 +1,5 @@
SET allow_suspicious_low_cardinality_types=1;
DROP TABLE IF EXISTS t_01411;
CREATE TABLE t_01411(

View File

@ -1,3 +1,4 @@
set allow_suspicious_low_cardinality_types=1;
drop table if exists perf_lc_num;
CREATE TABLE perf_lc_num(  num UInt8,  arr Array(LowCardinality(Int64)) default [num]  ) ENGINE = TinyLog;

View File

@ -1,3 +1,4 @@
SET allow_suspicious_low_cardinality_types=1;
DROP TABLE IF EXISTS t_nested_tuple;
CREATE TABLE t_nested_tuple