-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support 'SELECT NULL null_field' and union schemas with NULL type fie…
…ld in coral-schema (#71) * Support 'SELECT NULL null_field' and union schemas with NULL type field in coral-schema
- Loading branch information
Showing
5 changed files
with
38 additions
and
2 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,9 @@ | ||
{ | ||
"type" : "record", | ||
"name" : "basenulltypefield", | ||
"namespace" : "coral.schema.avro.base.null.type.field", | ||
"fields" : [ { | ||
"name" : "Null_Field", | ||
"type" : "null" | ||
} ] | ||
} |
9 changes: 9 additions & 0 deletions
9
coral-schema/src/test/resources/testSelectNullUnionNullField-expected.avsc
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,9 @@ | ||
{ | ||
"type" : "record", | ||
"name" : "v", | ||
"namespace" : "default.v", | ||
"fields" : [ { | ||
"name" : "Null_Field", | ||
"type" : "null" | ||
} ] | ||
} |