This is an automated email from the ASF dual-hosted git repository.
chengpan pushed a commit to branch branch-1.8
in repository https://gitbox.apache.org/repos/asf/kyuubi.git
The following commit(s) were added to refs/heads/branch-1.8 by this push:
new eb542bf12 [KYUUBI #5345] [DOCS] Fix non-kerberized code description in
quick_start_with_jdbc
eb542bf12 is described below
commit eb542bf1228fb84b76710ed69736aae6638fb925
Author: mrtisttt <[email protected]>
AuthorDate: Sat Sep 30 00:16:00 2023 +0800
[KYUUBI #5345] [DOCS] Fix non-kerberized code description in
quick_start_with_jdbc
### _Why are the changes needed?_
In the `Getting Started with Hive JDBC`documentation, section`Connect to
non-kerberized Kyuubi Server`, the code description is incorrect:
```
The below java code is using a keytab file to login and connect to Kyuubi
server by JDBC.
```
Obviously, the sections and code here are describing how to connect to a
kyuubi service without kerberos authentication.
### _How was this patch tested?_
Just fix code description, no test need.
Closes #5345 from mrtisttt/fix-non-kerberized-code-description.
Closes #5345
fa0418f00 [mrtisttt] [DOCS] Fix non-kerberized code description in
quick_start_with_jdbc
Authored-by: mrtisttt <[email protected]>
Signed-off-by: Cheng Pan <[email protected]>
(cherry picked from commit 57b6773c92bedde517727a9cb54cf5291efff948)
Signed-off-by: Cheng Pan <[email protected]>
---
docs/quick_start/quick_start_with_jdbc.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/quick_start/quick_start_with_jdbc.md
b/docs/quick_start/quick_start_with_jdbc.md
index e6f4f7052..0193a12d0 100644
--- a/docs/quick_start/quick_start_with_jdbc.md
+++ b/docs/quick_start/quick_start_with_jdbc.md
@@ -35,7 +35,7 @@ The driver is available from Maven Central:
## Connect to non-kerberized Kyuubi Server
-The below java code is using a keytab file to login and connect to Kyuubi
server by JDBC.
+The following java code connects directly to the Kyuubi Server by JDBC without
using kerberos authentication.
```java
package org.apache.kyuubi.examples;