Column: Only store UDA column objects that instantiate

This commit is contained in:
Paul Beckingham
2016-02-01 18:43:10 -05:00
parent 11b7d2edbf
commit 309ee57783

View File

@@ -168,7 +168,8 @@ void Column::uda (std::map <std::string, Column*>& all)
throw format (STRING_UDA_COLLISION, uda);
Column* c = Column::uda (uda);
all[c->_name] = c;
if (c)
all[c->_name] = c;
}
}