mirror of
https://github.com/apache/impala.git
synced 2026-01-08 12:02:54 -05:00
If an error occurs while processing an Expr, only that ExprContext is closed and the others are still left open. This leads to a DCHECK during teardown of the query because the destructor of ExprContext expects it to be closed. In this patch, we close all the ExprContexts if an error occurs in any one. Change-Id: Ic748bfd213511c314c59594d075048f6c6d82073 Reviewed-on: http://gerrit.cloudera.org:8080/1222 Reviewed-by: Sailesh Mukil <sailesh@cloudera.com> Tested-by: Internal Jenkins
This directory contains Impala test workloads. The directory layout for the workloads should follow: workloads/ <data set name>/<data set name>_dimensions.csv <- The test dimension file <data set name>/<data set name>_core.csv <- A test vector file <data set name>/<data set name>_pairwise.csv <data set name>/<data set name>_exhaustive.csv <data set name>/queries/<query test>.test <- The queries for this workload