You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@impala.apache.org by "Daniel Becker (Jira)" <ji...@apache.org> on 2022/07/05 11:42:00 UTC

[jira] [Created] (IMPALA-11416) SlotRef::tuple_is_nullable_ uninitialised for struct children

Daniel Becker created IMPALA-11416:
--------------------------------------

             Summary: SlotRef::tuple_is_nullable_ uninitialised for struct children
                 Key: IMPALA-11416
                 URL: https://issues.apache.org/jira/browse/IMPALA-11416
             Project: IMPALA
          Issue Type: Bug
          Components: Backend
            Reporter: Daniel Becker
            Assignee: Daniel Becker


In {{SlotRef::Init}}, {{tuple_is_nullable_}} is only assigned a value if the {{SlotRef}} is not within a struct:
{code:cpp}
if (!slot_desc_->parent()->isTupleOfStructSlot()) {
      tuple_is_nullable_ = row_desc.TupleIsNullable(tuple_idx_);
}
{code}
https://github.com/apache/impala/blob/fefb9f24be1f99ac0077a8d6ef00834d8e90ef45/be/src/exprs/slot-ref.cc#L103

Otherwise {{tuple_is_nullable_}} remains uninitialised, leading to undefined behaviour when it is read.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)