velox icon indicating copy to clipboard operation
velox copied to clipboard

ComplexVector.h: RowVector class variables childrenSize_ and children_ keywords discrepancy

Open minhancao opened this issue 9 months ago • 0 comments

Description

In ComplexVector.h RowVector class, the childrenSize_ variable is defined as const but the children_ variable is defined as mutable...

const size_t childrenSize_;
mutable std::vector<VectorPtr> children_;

We should make both to be the same to be either const or mutable.

minhancao avatar May 14 '24 20:05 minhancao