| 527 | } |
| 528 | |
| 529 | bool RowDescriptor::IsAnyTupleNullable() const { |
| 530 | for (int i = 0; i < tuple_idx_nullable_map_.size(); ++i) { |
| 531 | if (tuple_idx_nullable_map_[i]) return true; |
| 532 | } |
| 533 | return false; |
| 534 | } |
| 535 | |
| 536 | void RowDescriptor::ToThrift(vector<TTupleId>* row_tuple_ids) const { |
| 537 | row_tuple_ids->clear(); |