ClickHouse/tests/performance/orc_tuple_field_prune.xml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
1.0 KiB
XML
Raw Normal View History

2023-10-30 12:29:43 +00:00
<test>
<settings>
<output_format_orc_string_as_string>1</output_format_orc_string_as_string>
<input_format_orc_row_batch_size>10000</input_format_orc_row_batch_size>
</settings>
<fill_query>
2023-11-02 07:27:48 +00:00
insert into function file('test_orc_tfp.orc', 'ORC') select * from generateRandom('tuple_column Tuple(a Nullable(String), b Nullable(Float64), c Nullable(Int64)), array_tuple_column Nested(a Nullable(String), b Nullable(Float64), c Nullable(Int64)), map_tuple_column Map(String, Tuple(a Nullable(String), b Nullable(Float64), c Nullable(Int64)))') limit 1000000
2023-10-30 12:29:43 +00:00
</fill_query>
<drop_query>DROP TABLE IF EXISTS test_orc_tfp</drop_query>
2023-11-02 07:27:48 +00:00
<query>select * from file('test_orc_tfp.orc', 'ORC', 'tuple_column Tuple(c Nullable(Int64))') format Null</query>
<query>select * from file('test_orc_tfp.orc', 'ORC', 'array_tuple_column Nested(c Nullable(Int64))') format Null</query>
<query>select * from file('test_orc_tfp.orc', 'ORC', 'map_tuple_column Map(String, Tuple(c Nullable(Int64)))') format Null</query>
2023-11-02 02:49:18 +00:00
</test>