From ca9c94da470f97136ee8d9dbd4fe5d3ead247cb3 Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 10 Mar 2023 09:16:21 +0000 Subject: [PATCH] [KYUUBI #4491] Fix Trino typo ### _Why are the changes needed?_ fix trino typos ### _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/master/develop_tools/testing.html#running-tests) locally before make a pull request Closes #4491 from Kiss736921/fix_trino_typos. Closes #4491 73eb20f3a [Alex] fix trino typos Authored-by: Alex Signed-off-by: Cheng Pan (cherry picked from commit 454aed67d743692d6ebd84012cf59462b92f259d) Signed-off-by: Cheng Pan --- .../src/main/scala/org/apache/kyuubi/server/KyuubiServer.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyuubi-server/src/main/scala/org/apache/kyuubi/server/KyuubiServer.scala b/kyuubi-server/src/main/scala/org/apache/kyuubi/server/KyuubiServer.scala index e81240a96..a7f2e8178 100644 --- a/kyuubi-server/src/main/scala/org/apache/kyuubi/server/KyuubiServer.scala +++ b/kyuubi-server/src/main/scala/org/apache/kyuubi/server/KyuubiServer.scala @@ -157,7 +157,7 @@ class KyuubiServer(name: String) extends Serverable(name) { warn("MYSQL frontend protocol is experimental.") new KyuubiMySQLFrontendService(this) case TRINO => - warn("Trio frontend protocol is experimental.") + warn("Trino frontend protocol is experimental.") new KyuubiTrinoFrontendService(this) case other => throw new UnsupportedOperationException(s"Frontend protocol $other is not supported yet.")