fixes for constructing and assigning records with fields that are empty vectors

This commit is contained in:
Vern Paxson 2021-11-16 12:11:30 -08:00
parent bdb5222c27
commit 06bbd167cd
6 changed files with 37 additions and 5 deletions

View file

@ -3646,6 +3646,7 @@ bool VectorVal::Concretize(const TypePtr& t)
}
// Require that this vector be treated consistently in the future.
type = make_intrusive<VectorType>(t);
yield_type = t;
managed_yield = ZVal::IsManagedType(yield_type);
delete yield_types;