[
https://issues.apache.org/jira/browse/HIVE-25423?focusedWorklogId=636526&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-636526
]
ASF GitHub Bot logged work on HIVE-25423:
-----------------------------------------
Author: ASF GitHub Bot
Created on: 10/Aug/21 16:54
Start Date: 10/Aug/21 16:54
Worklog Time Spent: 10m
Work Description: dantongdong commented on a change in pull request #2559:
URL: https://github.com/apache/hive/pull/2559#discussion_r686152846
##########
File path:
itests/util/src/main/java/org/apache/hadoop/hive/ql/externalDB/AbstractExternalDB.java
##########
@@ -0,0 +1,291 @@
+/*
+ * 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.hadoop.hive.ql.externalDB;
+
+import sqlline.SqlLine;
+
+import org.apache.commons.io.output.NullOutputStream;
+
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
+import java.util.concurrent.TimeUnit;
+import java.io.BufferedReader;
+import java.io.InputStreamReader;
+import java.io.ByteArrayOutputStream;
+import java.io.File;
+import java.io.FileReader;
+import java.io.InputStream;
+import java.io.OutputStream;
+import java.io.PrintStream;
+import java.io.IOException;
+import java.net.URI;
+import java.sql.Connection;
+import java.sql.DriverManager;
+import java.sql.SQLException;
+
+import org.apache.commons.lang3.StringUtils;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/**
+ * abstractExternalDB is incharge of connect to and populate externaal
database for qtest
+ */
+public abstract class AbstractExternalDB {
+ protected static final Logger LOG =
LoggerFactory.getLogger("AbstractExternalDB");
+
+ protected static final String userName = "qtestuser";
+ protected static final String password = "qtestpassword";
+ protected static final String dbName = "qtestDB";
+
+ public String externalDBType = "derby"; // default: derby
+ protected String url = String.format("jdbc:derby:memory:%s;create=true",
dbName); // defualt: dervy
Review comment:
On second thought, this driver does not support derby currently. (The
code is there but haven't really tested it). Maybe I should change it to the
default to mysql.
--
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]
Issue Time Tracking
-------------------
Worklog Id: (was: 636526)
Time Spent: 2h 50m (was: 2h 40m)
> Add new test driver to automatically launch and load external database
> ----------------------------------------------------------------------
>
> Key: HIVE-25423
> URL: https://issues.apache.org/jira/browse/HIVE-25423
> Project: Hive
> Issue Type: Test
> Components: Testing Infrastructure, Tests
> Affects Versions: 3.1.2
> Reporter: Dantong Dong
> Assignee: Dantong Dong
> Priority: Major
> Labels: pull-request-available
> Attachments: Screen Shot 2021-08-04 at 2.32.35 PM.png
>
> Time Spent: 2h 50m
> Remaining Estimate: 0h
>
> Add new test driver(TestMiniLlapExtDBCliDriver) to automatically launch and
> load external database with specified custom script during test. This Issue
> was originated from HIVE-24396. Will add docs later
> !Screen Shot 2021-08-04 at 2.32.35 PM.png|width=500,height=262!
--
This message was sent by Atlassian Jira
(v8.3.4#803005)