Takes an ImpalaTestSuite object 'test_suite' and register new exec option dimension. 'key' must be a query option known to Impala, and 'values' must be a list of more than one element. Exec option 'key' must not be declared before. If writing constraint against 'key', the value should be lo
(test_suite, key, values)
| 304 | |
| 305 | |
| 306 | def add_exec_option_dimension(test_suite, key, values): |
| 307 | """ |
| 308 | Takes an ImpalaTestSuite object 'test_suite' and register new exec option dimension. |
| 309 | 'key' must be a query option known to Impala, and 'values' must be a list of more than |
| 310 | one element. Exec option 'key' must not be declared before. |
| 311 | If writing constraint against 'key', the value should be looked up at: |
| 312 | vector.get_value('key') |
| 313 | instead of: |
| 314 | vector.get_value('exec_option')['key'] |
| 315 | """ |
| 316 | test_suite.ImpalaTestMatrix.add_exec_option_dimension( |
| 317 | ImpalaTestDimension(key, *values)) |
| 318 | |
| 319 | |
| 320 | def add_mandatory_exec_option(test_suite, key, value): |
no test coverage detected