Will we return the current column to the query? Hive allows cols at the end of the table that are not in the schema. We'll just ignore those columns
| 111 | /// Hive allows cols at the end of the table that are not in the schema. We'll |
| 112 | /// just ignore those columns |
| 113 | bool ReturnCurrentColumn() const { |
| 114 | return column_idx_ < num_cols_ && is_materialized_col_[column_idx_]; |
| 115 | } |
| 116 | |
| 117 | /// Fill in columns missing at the end of the tuple. |
| 118 | /// 'len' and 'last_column' may contain the length and the pointer to the |