Creates an exec_option dimension that will produce a single test vector
(num_nodes=0, disable_codegen_rows_threshold=5000)
| 246 | |
| 247 | |
| 248 | def create_single_exec_option_dimension(num_nodes=0, disable_codegen_rows_threshold=5000): |
| 249 | """Creates an exec_option dimension that will produce a single test vector""" |
| 250 | return create_exec_option_dimension(cluster_sizes=[num_nodes], |
| 251 | disable_codegen_options=[False], |
| 252 | # Make sure codegen kicks in for functional.alltypes. |
| 253 | disable_codegen_rows_threshold_options=[disable_codegen_rows_threshold], |
| 254 | batch_sizes=[0]) |
| 255 | |
| 256 | |
| 257 | # TODO IMPALA-12394: switch to ALL_CLUSTER_SIZES |
no test coverage detected