| 277 | } |
| 278 | |
| 279 | void StreamWriter::SkipOptionalColumn() { |
| 280 | if (SkipColumns(1) != 1) { |
| 281 | throw ParquetException("Failed to skip optional column at column index " + |
| 282 | std::to_string(column_index_)); |
| 283 | } |
| 284 | } |
| 285 | |
| 286 | void StreamWriter::EndRow() { |
| 287 | if (!file_writer_) { |
nothing calls this directly
no test coverage detected