[Enhancement](action) Support request the table schema of Non-OLAP table through http action#14518
Closed
weizuo93 wants to merge 1 commit intoapache:masterfrom
Closed
[Enhancement](action) Support request the table schema of Non-OLAP table through http action#14518weizuo93 wants to merge 1 commit intoapache:masterfrom
weizuo93 wants to merge 1 commit intoapache:masterfrom
Conversation
stalary
reviewed
Dec 2, 2022
| } catch (MetaNotFoundException e) { | ||
| catalog = Env.getCurrentEnv().getCatalogMgr().getCatalog(InternalCatalog.INTERNAL_CATALOG_NAME); | ||
| db = catalog.getDbOrAnalysisException(fullDbName); | ||
| table = db.getTableOrAnalysisException(tblName); |
Contributor
There was a problem hiding this comment.
Can we use db.getTableOrMetaException(tblName)?
Contributor
Author
There was a problem hiding this comment.
@stalary Thanks for your comment. This patch is to support querying doris view through spark, but there are some problems. I will close this PR.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Proposed changes
Issue Number: close #14517
Problem summary
This action is used to obtain the table structure information of the specified table.
But for Non-OLAP table, this action can not work such as
view. For example:This patch is to support request the table schema of Non-OLAP table through this action.
Checklist(Required)