Skip to content

Commit

Permalink
Add Avro file for null test case (#90)
Browse files Browse the repository at this point in the history
To be used for the changes in
apache/datafusion#6307

file contents:

```
❯ avro-tools tojson data/avro/alltypes_nulls_plain.avro
{"string_col":null,"int_col":null,"bool_col":null,"bigint_col":null,"float_col":null,"double_col":null,"bytes_col":null}
```
  • Loading branch information
alamb authored May 10, 2023
2 parents 47f7b56 + 70ba4d8 commit e81d0c6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions data/avro/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,9 @@ for (fileStatus <- status) {
}
}
```

Additional notes:

| File | Description |
|:--|:--|
| alltypes_nulls_plain.avro | Contains a single row with null values for each scalar data type, i.e, `{"string_col":null,"int_col":null,"bool_col":null,"bigint_col":null,"float_col":null,"double_col":null,"bytes_col":null}`. Generated from https://gist.github.com/nenorbot/5a92e24f8f3615488f75e2a18a105c76 |
Binary file added data/avro/alltypes_nulls_plain.avro
Binary file not shown.

0 comments on commit e81d0c6

Please sign in to comment.