(self, operation_handle)
| 376 | pass |
| 377 | |
| 378 | def get_exec_summary_table(self, operation_handle): |
| 379 | summary_table = list() |
| 380 | summary = self.get_exec_summary(operation_handle) |
| 381 | if summary: |
| 382 | summary_table = build_summary_table_from_thrift(summary) |
| 383 | return summary_table |
| 384 | |
| 385 | |
| 386 | # Represents a connection to Impala using the Beeswax API. |