-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug Fix, handle DESC TABLE response (#2211)
Signed-off-by: Peng Huo <[email protected]> (cherry picked from commit 9df968a) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
1efd92c
commit 3777d8c
Showing
3 changed files
with
79 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"data": { | ||
"result": [ | ||
"{'col_name':'day','data_type':'int'}", | ||
"{'col_name':'# Partition Information','data_type':'','comment':''}", | ||
"{'col_name':'# col_name','data_type':'data_type','comment':'comment'}", | ||
"{'col_name':'day','data_type':'int'}" | ||
], | ||
"schema": [ | ||
"{'column_name':'col_name','data_type':'string'}", | ||
"{'column_name':'data_type','data_type':'string'}", | ||
"{'column_name':'comment','data_type':'string'}" | ||
], | ||
"stepId": "s-123456789", | ||
"applicationId": "application-abc" | ||
} | ||
} |