pan3793 commented on a change in pull request #1381:
URL: https://github.com/apache/incubator-kyuubi/pull/1381#discussion_r748978858



##########
File path: 
kyuubi-hive-jdbc/src/main/java/org/apache/kyuubi/jdbc/hive/KyuubiHiveDriver.java
##########
@@ -0,0 +1,305 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.kyuubi.jdbc.hive;
+
+import java.io.IOException;
+import java.net.URL;
+import java.sql.Connection;
+import java.sql.Driver;
+import java.sql.DriverPropertyInfo;
+import java.sql.SQLException;
+import java.sql.SQLFeatureNotSupportedException;
+import java.util.Properties;
+import java.util.jar.Attributes;
+import java.util.jar.Manifest;
+import java.util.logging.Logger;
+import java.util.regex.Pattern;
+
+import org.apache.kyuubi.jdbc.hive.Utils.JdbcConnectionParams;
+
+
+/**
+ * HiveDriver.
+ *
+ */
+public class KyuubiHiveDriver implements Driver {

Review comment:
       We expose this class to user, please don't change the `package`

##########
File path: docs/quick_start/quick_start_with_dbeaver.md
##########
@@ -86,7 +86,7 @@ Click next...
 
 ### Edit the Driver
 
-We can set libraries that include the `org.apache.hive.jdbc.HiveDriver` and 
all of its dependencies.
+We can set libraries that include the `KyuubiHiveDriver` and all of its 
dependencies.

Review comment:
       `org.apache.kyuubi.jdbc.KyuubiHiveDriver`




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to