Skip to content

Commit ec4565b

Browse files
committed
remove redundant docs
1 parent ae1cce2 commit ec4565b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/deployment/settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ kyuubi.authentication|NONE|A comma separated list of client authentication types
140140
kyuubi.authentication.custom.class|<undefined>|User-defined authentication implementation of org.apache.kyuubi.service.authentication.PasswdAuthenticationProvider|string|1.3.0
141141
kyuubi.authentication.jdbc.driver.class|<undefined>|Driver class name for JDBC Authentication Provider.|string|1.6.0
142142
kyuubi.authentication.jdbc.password|<undefined>|Database password for JDBC Authentication Provider.|string|1.6.0
143-
kyuubi.authentication.jdbc.query|<undefined>|Query SQL template with placeholders for JDBC Authentication Provider to execute. Authentication passes if the result set is not empty.The SQL statement must start with the SELECT clause. Available placeholders are `${user}` and `${password}`.|string|1.6.0
143+
kyuubi.authentication.jdbc.query|<undefined>|Query SQL template with placeholders for JDBC Authentication Provider to execute. Authentication passes if the result set is not empty.The SQL statement must start with the `SELECT` clause. Available placeholders are `${user}` and `${password}`.|string|1.6.0
144144
kyuubi.authentication.jdbc.url|<undefined>|JDBC URL for JDBC Authentication Provider.|string|1.6.0
145145
kyuubi.authentication.jdbc.user|<undefined>|Database user for JDBC Authentication Provider.|string|1.6.0
146146
kyuubi.authentication.ldap.attrs|mail|Specifies part of the search as an attribute returned by LDAP. For example: mail,name.|seq|1.6.0

docs/security/jdbc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
Kyuubi supports authentication via JDBC query. A query is prepared with user/password value and sent to the database configured in JDBC URL. Authentication passes if the result set is not empty.
2222

23-
The query sql must start with `SELECT`. The SQL statement must start with the SELECT clause. Placeholders are supported and listed below for substitution:
23+
The SQL statement must start with the `SELECT` clause. Placeholders are supported and listed below for substitution:
2424
- `${user}`
2525
- `${password}`
2626

kyuubi-common/src/main/scala/org/apache/kyuubi/config/KyuubiConf.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,7 @@ object KyuubiConf {
707707
.doc("Query SQL template with placeholders " +
708708
"for JDBC Authentication Provider to execute. " +
709709
"Authentication passes if the result set is not empty." +
710-
"The SQL statement must start with the SELECT clause. " +
710+
"The SQL statement must start with the `SELECT` clause. " +
711711
"Available placeholders are `${user}` and `${password}`.")
712712
.version("1.6.0")
713713
.stringConf

0 commit comments

Comments
 (0)