mirror of
https://github.com/apache/impala.git
synced 2026-01-04 09:00:56 -05:00
This change includes a number of improvements for the test data loading framework: * Named sections for schema template definitions * Removal of uneeded sections from schema template definitions (ex. ANALYZE TABLE) * More granular data loading via table name filters * Improved robustness in detecting failed data loads * Table level constraints for specific file formats * Re-written compute stats script
12 lines
643 B
CSV
12 lines
643 B
CSV
# Table level constraints:
|
|
# Allows for defining constraints on which file formats to generate for an individual
|
|
# table. The table name should match the base table name defined in the schema template
|
|
# file.
|
|
table_name:hbasealltypessmall, constraint:restrict_to, file_format:text
|
|
table_name:hbasealltypesagg, constraint:restrict_to, file_format:text
|
|
table_name:hbasealltypeserror, constraint:restrict_to, file_format:text
|
|
table_name:hbasealltypeserrornonulls, constraint:restrict_to, file_format:text
|
|
table_name:hbasestringids, constraint:restrict_to, file_format:text
|
|
|
|
table_name:TblWithRaggedColumns, constraint:exclude, file_format:trevni
|