From a90cb0a9fb15b93c64b0570daccb8c524f5ac382 Mon Sep 17 00:00:00 2001 From: Russell Spitzer Date: Fri, 19 Jul 2024 08:33:15 +0900 Subject: [PATCH] [SPARK-48495][DOCS][FOLLOW-UP] Fix Table Markdown in Shredding.md Minor change that shouldn't require a Jira to fix the unbalanced row in the example of Shredding.md Closes #47407 from RussellSpitzer/patch-1. Authored-by: Russell Spitzer Signed-off-by: Hyukjin Kwon --- common/variant/shredding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/variant/shredding.md b/common/variant/shredding.md index ba5e3f8cdcc2b..40648619eba88 100644 --- a/common/variant/shredding.md +++ b/common/variant/shredding.md @@ -39,7 +39,7 @@ optional group variant_col { ``` | Variant Value | Top-level untyped_value | b.untyped_value | Non-null in a | Non-null in b.c | -|---------------|--------------------------|---------------|---------------| +|---------------|--------------------------|---------------|---------------|------------------| | {a: 123, b: {c: “hello”}} | null | null | typed_value | typed_value | | {a: 1.23, b: {c: “123”}} | null | null | untyped_value | typed_value | | {a: [1,2,3], b: {c: null}} | null | null | untyped_value | untyped_value |