zeroshade commented on code in PR #217:
URL: https://github.com/apache/arrow-go/pull/217#discussion_r1882656859


##########
parquet/metadata/file.go:
##########
@@ -275,6 +279,12 @@ func NewFileMetaData(data []byte, fileDecryptor 
encryption.FileDecryptor) (*File
 // Size is the length of the raw serialized metadata bytes in the footer
 func (f *FileMetaData) Size() int { return f.metadataLen }
 
+// SetSourceFileSize get the total size of the source file from meta data.
+func (f *FileMetaData) GetSourceFileSize() int64 { return f.sourceFileSize }
+
+// GetSourceFileSize set the total size of the source file in meta data.
+func (f *FileMetaData) SetSourceFileSize(sourceFileSize int64) { 
f.sourceFileSize = sourceFileSize }

Review Comment:
   doc strings are reversed currently, gotta swap those :smile:



-- 
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]

Reply via email to