The result array is of length hdfs_table_->num_cols(). The i-th element is true iff column i should be materialized.
| 499 | /// The result array is of length hdfs_table_->num_cols(). The i-th element is true iff |
| 500 | /// column i should be materialized. |
| 501 | const bool* is_materialized_col() { |
| 502 | return reinterpret_cast<const bool*>(is_materialized_col_.data()); |
| 503 | } |
| 504 | |
| 505 | /// Returns a pointer to the atomic wrapper of the per format codegen'd function. |
| 506 | /// Scanners call this to get the codegen'd function to use. Returns NULL if codegen |
no test coverage detected