mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
fix failed perf test
This commit is contained in:
parent
6ccde98943
commit
b8665a610c
@ -2,16 +2,15 @@
|
||||
<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>
|
||||
<flatten_nested>0</flatten_nested>
|
||||
</settings>
|
||||
|
||||
<fill_query>
|
||||
insert into function file('test_orc_tfp.orc', 'ORC') select * from generateRandom('int64_column Nullable(Int64), tuple_column Tuple(a Nullable(String), b Nullable(Float64), c Nullable(Int64)), array_tuple_column Array(Tuple(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
|
||||
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
|
||||
</fill_query>
|
||||
|
||||
<drop_query>DROP TABLE IF EXISTS test_orc_tfp</drop_query>
|
||||
|
||||
<query>select * from file('test_orc_tfp.orc', 'ORC', 'int64_column Int64, tuple_column Tuple(c Nullable(Int64))') format Null</query>
|
||||
<query>select * from file('test_orc_tfp.orc', 'ORC', 'int64_column Int64, array_tuple_column Array(Tuple(c Nullable(Int64)))') format Null</query>
|
||||
<query>select * from file('test_orc_tfp.orc', 'ORC', 'int64_column Int64, map_tuple_column Map(String, Tuple(c Nullable(Int64)))') format Null</query>
|
||||
<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>
|
||||
</test>
|
||||
|
Loading…
Reference in New Issue
Block a user