From ac85676d842b3a502c2c459ab65a1ba07f5a9713 Mon Sep 17 00:00:00 2001 From: Kruglov Pavel <48961922+Avogar@users.noreply.github.com> Date: Mon, 15 Aug 2022 00:10:08 +0200 Subject: [PATCH] Update arrow_format.xml --- tests/performance/arrow_format.xml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tests/performance/arrow_format.xml b/tests/performance/arrow_format.xml index 267c9346b48..244f22687ac 100644 --- a/tests/performance/arrow_format.xml +++ b/tests/performance/arrow_format.xml @@ -1,12 +1,14 @@ - CREATE TABLE test (uint32 UInt32, n_uint32 Nullable(UInt32), lc LowCardinality(String), n_lc LowCardinality(Nullable(String))) ENGINE=File(Arrow) SETTINGS output_format_arrow_low_cardinality_as_dictionary=1 - insert into test select number, number, toString(number % 10000), toString(number % 10000) from numbers(20000000) + CREATE TABLE test (uint32 UInt32, n_uint32 Nullable(UInt32), lc LowCardinality(String)) ENGINE=File(Arrow) SETTINGS output_format_arrow_low_cardinality_as_dictionary=1 + CREATE TABLE test_lc_nullable (lc LowCardinality(Nullable(String))) ENGINE=File(Arrow) SETTINGS output_format_arrow_low_cardinality_as_dictionary=1 + insert into test select number, number, toString(number % 10000) from numbers(10000000) + insert into test_lc_nullable select toString(number % 10000) from numbers(10000000) SELECT uint32 from test format Null - SELECT n_uint32 from test format Null SELECT lc from test format Null - SELECT n_lc from test format Null + SELECT lc from test_nlc_ullable format Null DROP TABLE IF EXISTS test + DROP TABLE IF EXISTS test_lc_nullable