1
0

[MINOR] Fix avro schema warnings in build

This commit is contained in:
Guru107
2019-10-30 11:48:29 +05:30
committed by n3nash
parent 7c7403a59d
commit eda472adb0
4 changed files with 25 additions and 16 deletions

View File

@@ -32,23 +32,28 @@
"fields":[
{
"name":"partitionPath",
"type":["null","string"]
"type":["null","string"],
"default": null
},
{
"name":"totalLogRecords",
"type":["null","long"]
"type":["null","long"],
"default": null
},
{
"name":"totalLogFiles",
"type":["null","long"]
"type":["null","long"],
"default": null
},
{
"name":"totalUpdatedRecordsCompacted",
"type":["null","long"]
"type":["null","long"],
"default": null
},
{
"name":"hoodieWriteStat",
"type":["null","HoodieWriteStat"]
"type":["null","HoodieWriteStat"],
"default": null
}
]
}