Steve Carlin has submitted this change and it was merged. ( http://gerrit.cloudera.org:8080/22109 )
Change subject: IMPALA-13575: Calcite planner: Fix exception when null is in values clause ...................................................................... IMPALA-13575: Calcite planner: Fix exception when null is in values clause The following query was failing with an exception: select * from (values(0), (null)) The null type was not being assigned a type correctly. After this fix, the null type will be created as an AnalyzedNullLiteral with the correct type. Change-Id: I4e78fb0ed63b9525540ad537cfb7aabd8bbfe7ea Reviewed-on: http://gerrit.cloudera.org:8080/22109 Reviewed-by: Aman Sinha <[email protected]> Reviewed-by: Michael Smith <[email protected]> Tested-by: Impala Public Jenkins <[email protected]> --- M java/calcite-planner/src/main/java/org/apache/impala/calcite/rel/node/ImpalaValuesRel.java 1 file changed, 27 insertions(+), 5 deletions(-) Approvals: Aman Sinha: Looks good to me, approved Michael Smith: Looks good to me, but someone else must approve Impala Public Jenkins: Verified -- To view, visit http://gerrit.cloudera.org:8080/22109 To unsubscribe, visit http://gerrit.cloudera.org:8080/settings Gerrit-Project: Impala-ASF Gerrit-Branch: master Gerrit-MessageType: merged Gerrit-Change-Id: I4e78fb0ed63b9525540ad537cfb7aabd8bbfe7ea Gerrit-Change-Number: 22109 Gerrit-PatchSet: 7 Gerrit-Owner: Steve Carlin <[email protected]> Gerrit-Reviewer: Aman Sinha <[email protected]> Gerrit-Reviewer: Fang-Yu Rao <[email protected]> Gerrit-Reviewer: Impala Public Jenkins <[email protected]> Gerrit-Reviewer: Joe McDonnell <[email protected]> Gerrit-Reviewer: Michael Smith <[email protected]> Gerrit-Reviewer: Steve Carlin <[email protected]>
