-
Notifications
You must be signed in to change notification settings - Fork 141
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
Handle ALTER Index Queries. #2554
Handle ALTER Index Queries. #2554
Conversation
5288e22
to
b29d79e
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2554 +/- ##
============================================
+ Coverage 95.47% 95.53% +0.05%
- Complexity 5046 5101 +55
============================================
Files 486 488 +2
Lines 14087 14261 +174
Branches 943 958 +15
============================================
+ Hits 13450 13624 +174
Misses 614 614
Partials 23 23
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
dc770a0
to
a19cf56
Compare
7606bf7
to
2cc0dc3
Compare
core/src/test/java/org/opensearch/sql/expression/datetime/DateTimeFunctionTest.java
Outdated
Show resolved
Hide resolved
0d90565
to
d90d80b
Compare
spark/src/main/java/org/opensearch/sql/spark/flint/operation/FlintIndexOpAlter.java
Show resolved
Hide resolved
spark/src/main/java/org/opensearch/sql/spark/flint/operation/FlintIndexOpAlter.java
Show resolved
Hide resolved
d90d80b
to
43a4bf6
Compare
spark/src/test/java/org/opensearch/sql/spark/flint/FlintIndexMetadataServiceSpecTest.java
Outdated
Show resolved
Hide resolved
spark/src/test/java/org/opensearch/sql/spark/flint/FlintIndexMetadataServiceSpecTest.java
Outdated
Show resolved
Hide resolved
spark/src/test/java/org/opensearch/sql/spark/flint/FlintIndexMetadataServiceSpecTest.java
Outdated
Show resolved
Hide resolved
spark/src/test/java/org/opensearch/sql/spark/asyncquery/IndexQuerySpecTest.java
Outdated
Show resolved
Hide resolved
spark/src/test/java/org/opensearch/sql/spark/asyncquery/IndexQuerySpecTest.java
Show resolved
Hide resolved
spark/src/test/java/org/opensearch/sql/spark/asyncquery/IndexQuerySpecTest.java
Outdated
Show resolved
Hide resolved
spark/src/main/java/org/opensearch/sql/spark/dispatcher/IndexDMLHandler.java
Show resolved
Hide resolved
spark/src/main/java/org/opensearch/sql/spark/flint/operation/FlintIndexOpCancel.java
Outdated
Show resolved
Hide resolved
43a4bf6
to
da7e70f
Compare
spark/src/main/java/org/opensearch/sql/spark/flint/operation/FlintIndexOpCancel.java
Outdated
Show resolved
Hide resolved
43441ea
to
31ce5cf
Compare
31ce5cf
to
15be8b1
Compare
This PR also incorporated latest Flint SQL grammar changes below, so there is no need to publish separate PR. @rupal-bq @seankao-az
|
bf374fb
to
67ef580
Compare
Signed-off-by: Vamsi Manohar <[email protected]>
67ef580
to
4319e3f
Compare
The backport to
To backport manually, run these commands in your terminal: # Navigate to the root of your repository
cd $(git rev-parse --show-toplevel)
# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add ../.worktrees/sql/backport-2.x 2.x
# Navigate to the new working tree
pushd ../.worktrees/sql/backport-2.x
# Create a new branch
git switch --create backport/backport-2554-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 d11a26865dea8649fa4611084db08230ab9e7382
# Push it to GitHub
git push --set-upstream origin backport/backport-2554-to-2.x
# Go back to the original working tree
popd
# Delete the working tree
git worktree remove ../.worktrees/sql/backport-2.x Then, create a pull request where the |
Signed-off-by: Vamsi Manohar <[email protected]> (cherry picked from commit d11a268)
Signed-off-by: Vamsi Manohar <[email protected]> (cherry picked from commit d11a268)
Description
Issues Resolved
[List any issues this PR will resolve]
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.