Files
Michael Smith 0d01f5e829 IMPALA-13053: Update test to use ORC files
Updates test_max_nesting_depth to use precreated ORC files like the
Parquet version to reduce runtime rather than using Hive to generate ORC
from the Parquet files. This reduces each test run by almost 3 minutes.

Change-Id: I2f5bdbb86af0e651d189217a18882d5eda1098d5
Reviewed-on: http://gerrit.cloudera.org:8080/21391
Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2024-05-04 11:19:02 +00:00
..

This folder contains Parquet and ORC files for testing the maximum nesting
depth of complex types. The maximum nesting depth Types.MAX_NESTING_DEPTH
(100). All files contain the integer 42 as the only data value in a single
column.

The folders contain files for the following complex types with nesting
depth of exactly 100.

struct/
- struct<f:struct<f:...struct<f:int>...>>

int_array/
- array<array<...array<int>...>>

int_map/
- map<string,<map<string,...map<string,int>...>>

struct_array/
- array<struct<f:array<struct<f...array<int>...>>>>

struct_map/
- map<string,struct<f:map<string,struct:f...map<string,int>...>>>>