Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/backend/gporca/libnaucrates/src/md/CMDName.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ CMDName::CMDName(const CMDName &name)
//---------------------------------------------------------------------------
CMDName::~CMDName()
{
GPOS_ASSERT(m_name->IsValid());
// Some of `m_name` is reference only, there is no guarantee
// that the referenced object lives longer than the CMDName
// object when running the destructor of a process.

if (m_deep_copy)
{
Expand Down
Loading