mapleFU commented on code in PR #33897:
URL: https://github.com/apache/arrow/pull/33897#discussion_r1114546960
##########
cpp/src/parquet/column_writer.h:
##########
@@ -104,12 +104,15 @@ class PARQUET_EXPORT PageWriter {
// Return the number of uncompressed bytes written (including header size)
virtual int64_t WriteDictionaryPage(const DictionaryPage& page) = 0;
+ /// \brief The total number of bytes written as serialized data and
Review Comment:
It means written to sink. In fact, the comment is pasted from below:
```c++
/// \brief The total number of bytes written as serialized data and
/// dictionary pages to the ColumnChunk so far
virtual int64_t total_bytes_written() const = 0;
```
in `ColumnWriter`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]