-
Notifications
You must be signed in to change notification settings - Fork 919
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# 🔍 Description ## Issue References 🔗 This pull request fixes #6506 ## Describe Your Solution 🔧 Set the alias `--conf` to `--hiveconf`. ## Types of changes 🔖 - [ ] Bugfix (non-breaking change which fixes an issue) - [x] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) ## Test Plan 🧪 #### Behavior Without This Pull Request ⚰️ ``` # use --hiveconf or --hivevar to set some configurations kyuubi-beeline -u 'jdbc:kyuubi://kyuubi:10009/' \ --hiveconf kyuubi.operation.result.format=arrow \ --hiveconf kyuubi.operation.incremental.collect=true-f \ --hivevar app_name=xxx \ xxx.sql ``` #### Behavior With This Pull Request 🎉 ``` # use --conf to set some configurations kyuubi-beeline -u 'jdbc:kyuubi://kyuubi:10009/' \ --conf kyuubi.operation.result.format=arrow \ --conf kyuubi.operation.incremental.collect=true-f \ --conf app_name=xxx \ xxx.sql ``` #### Related Unit Tests --- # Checklist 📝 - [x] This patch was not authored or co-authored using [Generative Tooling](https://www.apache.org/legal/generative-tooling.html) **Be nice. Be informative.** Closes #6511 from BruceWong96/support-beeline-conf. Closes #6506 7a81455 [Bruce Wong] fix code style. 8d1fec2 [Bruce Wong] delete some spaces. d64505d [Bruce Wong] [FEATURE] kyuubi-beeline supports --conf. Authored-by: Bruce Wong <[email protected]> Signed-off-by: Cheng Pan <[email protected]>
- Loading branch information
1 parent
845f6c6
commit 28a1c73
Showing
4 changed files
with
27 additions
and
3 deletions.
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
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