-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AVRO-3992 [C++] Fix compiler warnings in code generated by schema wit…
…h empty record (#2927) * [C++] Fix compiler warnings in code generated by schema with empty record * [C++] Generate union names for record array-unions Added to make writing a test for empty unions easier. * [C++] Fix validatingEncoder for records
- Loading branch information
Showing
5 changed files
with
84 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"type": "record", | ||
"name": "StackCalculator", | ||
"fields": [ | ||
{ | ||
"name": "stack", | ||
"type": { | ||
"type": "array", | ||
"items": [ | ||
"int", | ||
{ | ||
"type": "record", | ||
"name": "Dup", | ||
"fields": [] | ||
}, | ||
{ | ||
"type": "record", | ||
"name": "Add", | ||
"fields": [] | ||
} | ||
] | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters