fix failed uts

This commit is contained in:
taiyang-li 2024-11-19 11:43:28 +08:00
parent f4e18669c4
commit 47944a4d0e
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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;