Dereference null return value
If the function actually returns a null value, a null pointer dereference will occur. Return value of function which returns null is dereferenced without checking
/src/mongo/db/query/sbe_stage_builder_lookup.cpp:284: NULL_RETURNS 121890 Assigning: "indexDescriptor" = "nullptr" return value from "findIndexByName".
- is caused by
-
SERVER-63572 Index SBEPlan: Translate EqLookup for scalar values on non-hashed indexes
- Closed