mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
fix failed uts
This commit is contained in:
parent
f4e18669c4
commit
47944a4d0e
@ -7,6 +7,7 @@
|
||||
#include <thrift/transport/TBufferTransports.h>
|
||||
#include <thrift/transport/TSocket.h>
|
||||
#include <Storages/Hive/HiveFile.h>
|
||||
#include <Poco/URI.h>
|
||||
|
||||
|
||||
namespace DB
|
||||
|
@ -4,7 +4,7 @@ DROP TABLE IF EXISTS null_in__fuzz_6;
|
||||
set allow_suspicious_low_cardinality_types = 1;
|
||||
|
||||
CREATE TABLE null_in__fuzz_6 (`dt` LowCardinality(UInt16), `idx` Int32, `i` Nullable(Int256), `s` Int32) ENGINE = MergeTree PARTITION BY dt ORDER BY idx;
|
||||
insert into null_in__fuzz_6 select * from generateRandom() limit 1;
|
||||
insert into null_in__fuzz_6 select * from generateRandom() where i is not null limit 1;
|
||||
|
||||
SET transform_null_in = 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user