This is an automated email from the ASF dual-hosted git repository.
feiwang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-kyuubi.git
The following commit(s) were added to refs/heads/master by this push:
new f3610b2b6 [KYUUBI #2920] Fix typo for mysql metadata schema
f3610b2b6 is described below
commit f3610b2b60ab5bc1a3e07cdcda0d09603fa94798
Author: Tianlin Liao <[email protected]>
AuthorDate: Tue Jun 21 11:40:53 2022 +0800
[KYUUBI #2920] Fix typo for mysql metadata schema
### _Why are the changes needed?_
Fix typo for mysql metadata schema.
### _How was this patch tested?_
- [ ] Add some test cases that check the changes thoroughly including
negative and positive cases if possible
- [ ] Add screenshots for manual tests if appropriate
- [x] [Run
test](https://kyuubi.apache.org/docs/latest/develop_tools/testing.html#running-tests)
locally before make a pull request
Closes #2920 from lightning-L/typo-2.
Closes #2920
5f54b6f5 [Tianlin Liao] fix minor typos
Authored-by: Tianlin Liao <[email protected]>
Signed-off-by: Fei Wang <[email protected]>
---
.../src/main/scala/org/apache/kyuubi/service/FrontendService.scala | 2 +-
.../src/main/resources/sql/mysql/metadata-store-schema-mysql.sql | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git
a/kyuubi-common/src/main/scala/org/apache/kyuubi/service/FrontendService.scala
b/kyuubi-common/src/main/scala/org/apache/kyuubi/service/FrontendService.scala
index 85bc10f04..e6d588012 100644
---
a/kyuubi-common/src/main/scala/org/apache/kyuubi/service/FrontendService.scala
+++
b/kyuubi-common/src/main/scala/org/apache/kyuubi/service/FrontendService.scala
@@ -18,7 +18,7 @@
package org.apache.kyuubi.service
/**
- * A [[FrontendService]] in Kyuubi architecture is responsible for talking
requests from clients
+ * A [[FrontendService]] in Kyuubi architecture is responsible for taking
requests from clients
*/
trait FrontendService {
diff --git
a/kyuubi-server/src/main/resources/sql/mysql/metadata-store-schema-mysql.sql
b/kyuubi-server/src/main/resources/sql/mysql/metadata-store-schema-mysql.sql
index 43c0510d0..ef8218191 100644
--- a/kyuubi-server/src/main/resources/sql/mysql/metadata-store-schema-mysql.sql
+++ b/kyuubi-server/src/main/resources/sql/mysql/metadata-store-schema-mysql.sql
@@ -7,7 +7,7 @@ CREATE TABLE metadata(
real_user varchar(1024) NOT NULL COMMENT 'the real user',
user_name varchar(1024) NOT NULL COMMENT 'the user name, might be a proxy
user',
ip_address varchar(512) COMMENT 'the client ip address',
- kyuubi_instance varchar(1024) NOT NULL COMMENT 'the kyuubi instance that
creates this'
+ kyuubi_instance varchar(1024) NOT NULL COMMENT 'the kyuubi instance that
creates this',
state varchar(128) NOT NULL COMMENT 'the session state',
resource varchar(1024) COMMENT 'the main resource',
class_name varchar(1024) COMMENT 'the main class name',