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.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Auto Suggest] Add back reverted MDS support, tests and cleanup for sql auto suggest #7543
[Auto Suggest] Add back reverted MDS support, tests and cleanup for sql auto suggest #7543
Changes from all commits
3efaa55
f230a23
b5e628f
4f72440
aadbe4d
e47af9c
335978d
47bfae9
14841ef
d3223af
70f238c
9a34528
e55c76a
7625412
f2d381f
9e7b1be
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
Check warning on line 57 in src/plugins/data/public/antlr/opensearch_sql/code_completion.ts
Codecov / codecov/patch
src/plugins/data/public/antlr/opensearch_sql/code_completion.ts#L57
Check warning on line 63 in src/plugins/data/public/antlr/opensearch_sql/code_completion.ts
Codecov / codecov/patch
src/plugins/data/public/antlr/opensearch_sql/code_completion.ts#L62-L63
Check warning on line 65 in src/plugins/data/public/antlr/opensearch_sql/code_completion.ts
Codecov / codecov/patch
src/plugins/data/public/antlr/opensearch_sql/code_completion.ts#L65
Check warning on line 68 in src/plugins/data/public/antlr/opensearch_sql/code_completion.ts
Codecov / codecov/patch
src/plugins/data/public/antlr/opensearch_sql/code_completion.ts#L67-L68
Check warning on line 72 in src/plugins/data/public/antlr/opensearch_sql/code_completion.ts
Codecov / codecov/patch
src/plugins/data/public/antlr/opensearch_sql/code_completion.ts#L72
Check warning on line 95 in src/plugins/data/public/antlr/opensearch_sql/code_completion.ts
Codecov / codecov/patch
src/plugins/data/public/antlr/opensearch_sql/code_completion.ts#L95
Check warning on line 103 in src/plugins/data/public/antlr/opensearch_sql/code_completion.ts
Codecov / codecov/patch
src/plugins/data/public/antlr/opensearch_sql/code_completion.ts#L103
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this catching errors for
await fetchTableSchemas
or something else could also throw error? if the network call fails, do we want to show other suggestions likesuggestAggregateFunctions
if possible?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yea we could but the only concern here is if fetching the schema is having error, but user is still getting other suggestions, would this error being potentially hidden in this case that user still thinks everything is working accurately?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i would think that there are different completion sources, one source failing shouldn't affect others. the TODO
Handle errors appropriately, possibly logging or displaying a message to the user
should help to notify user about any failure