コード例 #1
0
ファイル: CLIService.java プロジェクト: alanfgates/hive
 /** Used to restore session */
 public void createSessionWithSessionHandle(
     SessionHandle sessionHandle,
     String username,
     String password,
     Map<String, String> configuration)
     throws HiveSQLException {
   sessionManager.createSession(
       sessionHandle, SERVER_VERSION, username, password, null, configuration, false, null);
   LOG.debug(sessionHandle + ": createSessionWithSessionHandle()");
 }