Skip to content

Commit a498aa9

Browse files
authored
Update shredding example (#478)
1 parent d784f11 commit a498aa9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

VariantShredding.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ optional group variant_col {
8383
|---------------|-------------------------|-----------------|---------------|-----------------|------------------------|--------------------------|-------|
8484
| {a: 123, b: {c: “hello”}} | null | null | 123 | null | hello | null | All values shredded |
8585
| {a: 1.23, b: {c: “123”}} | null | null | null | 1.23 | 123 | null | a is not an integer |
86-
| {a: 123, b: {c: null}} | null | null | null | 123 | null | null | b.object.c set to non-null to indicate VariantNull |
87-
| {a: 123, b: {} | null | null | null | 123 | null | null | b.object.c set to null, to indicate that c is missing |
86+
| {a: 123, b: {c: null}} | null | null | 123 | null | null | null | b.object.c set to non-null to indicate VariantNull |
87+
| {a: 123, b: {}} | null | null | 123 | null | null | null | b.object.c set to null, to indicate that c is missing |
8888
| {a: 123, d: 456} | {d: 456} | null | 123 | null | null | null | Extra field d is stored as variant_value |
8989
| [{a: 1, b: {c: 2}}, {a: 3, b: {c: 4}}] | [{a: 1, b: {c: 2}}, {a: 3, b: {c: 4}}] | null | null | null | null | null | Not an object |
9090

0 commit comments

Comments
 (0)