-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ut: add serialize/deserialize tests for spec #56
base: main
Are you sure you want to change the base?
Conversation
|
||
#[test] | ||
fn test_data_file_meta_serialize_deserialize() { | ||
let json_data = r#" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi, @devillove084
This fixture appears to be just the schema of ManifestFileMeta
. How is ManifestFileMeta
data stored on disk?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should also have DataFileMeta
's datatype and DataFileMeta
on disk format.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The default manifest file is of avro
format. I think we should also generate a corresponding manifest file to verify the deserialize. But may be we should support avro/orc reader first ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The default manifest file is of
avro
format. I think we should also generate a corresponding manifest file to verify the deserialize. But may be we should support avro/orc reader first ?
+1
part of #26