From f40f630faa0feab3514468f6e222028e5ff12770 Mon Sep 17 00:00:00 2001 From: jiaoqingbo <1178404354@qq.com> Date: Thu, 28 Oct 2021 22:53:52 +0800 Subject: [PATCH] [KYUUBI #1306] Rename EventLoggerType DB to JDBC ### _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 --- .../main/scala/org/apache/kyuubi/events/EventLoggerType.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyuubi-common/src/main/scala/org/apache/kyuubi/events/EventLoggerType.scala b/kyuubi-common/src/main/scala/org/apache/kyuubi/events/EventLoggerType.scala index f2cc4c5a1..a029a0fc5 100644 --- a/kyuubi-common/src/main/scala/org/apache/kyuubi/events/EventLoggerType.scala +++ b/kyuubi-common/src/main/scala/org/apache/kyuubi/events/EventLoggerType.scala @@ -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 }