[KYUUBI #1306] Rename EventLoggerType DB to JDBC

<!--
Thanks for sending a pull request!

Here are some tips for you:
  1. If this is your first time, please read our contributor guidelines: https://kyuubi.readthedocs.io/en/latest/community/contributions.html
  2. If the PR is related to an issue in https://github.com/apache/incubator-kyuubi/issues, add '[KYUUBI #XXXX]' in your PR title, e.g., '[KYUUBI #XXXX] Your PR title ...'.
  3. If the PR is unfinished, add '[WIP]' in your PR title, e.g., '[WIP][KYUUBI #XXXX] Your PR title ...'.
-->

### _Why are the changes needed?_
Fix #1306

### _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

- [ ] [Run test](https://kyuubi.readthedocs.io/en/latest/develop_tools/testing.html#running-tests) locally before make a pull request

Closes #1309 from jiaoqingbo/kyuubi1.

Closes #1306

e0e5ce6c [jiaoqingbo] [KYUUBI #1306] Set DB to JDBC

Authored-by: jiaoqingbo <1178404354@qq.com>
Signed-off-by: Cheng Pan <chengpan@apache.org>
This commit is contained in:
jiaoqingbo 2021-10-28 22:53:52 +08:00 committed by Cheng Pan
parent 0d76485719
commit f40f630faa
No known key found for this signature in database
GPG Key ID: 8001952629BCC75D

View File

@ -22,5 +22,5 @@ object EventLoggerType extends Enumeration {
type EventLoggerType = Value
// TODO: Only SPARK is done now
val SPARK, JSON, DB, CUSTOM = Value
val SPARK, JSON, JDBC, CUSTOM = Value
}