[SPARK-53839][SQL] Add V2 table support to DESCRIBE TABLE AS JSON #53470
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What changes were proposed in this pull request?
This PR extends
DESCRIBE TABLE AS JSONsupport to DataSource V2 tablesWhy are the changes needed?
Prior to this PR,
DESCRIBE TABLE AS JSONonly supported DataSource V1 tables. Users can now access metadata in json format for both V1 and V2 tables using the same SQL syntaxDoes this PR introduce any user-facing change?
Yes. Users can now use
DESCRIBE TABLE AS JSONwith DataSource V2 tablesV2-Specific JSON Fields:
The JSON output for V2 tables includes additional fields not available for V1 tables:
How was this patch tested?
Added Tests in
DescribeTableSuite.scalaWas this patch authored or co-authored using generative AI tooling?
No.