Skip to content
Closed
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
/*
* 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.spark.sql.hive.thriftserver

import java.util.UUID

import org.apache.hadoop.hive.ql.security.authorization.plugin.HiveOperationType
import org.apache.hive.service.cli.{HiveSQLException, OperationState}
import org.apache.hive.service.cli.operation.GetTypeInfoOperation
import org.apache.hive.service.cli.session.HiveSession

import org.apache.spark.internal.Logging
import org.apache.spark.sql.SQLContext
import org.apache.spark.sql.hive.thriftserver.cli.Type
import org.apache.spark.util.{Utils => SparkUtils}

/**
* Spark's own GetTypeInfoOperation
*
* @param sqlContext SQLContext to use
* @param parentSession a HiveSession from SessionManager
*/
private[hive] class SparkGetTypeInfoOperation(
sqlContext: SQLContext,
parentSession: HiveSession)
extends GetTypeInfoOperation(parentSession) with Logging {

private var statementId: String = _

override def close(): Unit = {
super.close()
HiveThriftServer2.listener.onOperationClosed(statementId)
}

override def runInternal(): Unit = {
statementId = UUID.randomUUID().toString
val logMsg = "Listing type info"
logInfo(s"$logMsg with $statementId")
setState(OperationState.RUNNING)
// Always use the latest class loader provided by executionHive's state.
val executionHiveClassLoader = sqlContext.sharedState.jarClassLoader
Thread.currentThread().setContextClassLoader(executionHiveClassLoader)

if (isAuthV2Enabled) {
authorizeMetaGets(HiveOperationType.GET_TYPEINFO, null)
}

HiveThriftServer2.listener.onStatementStart(
statementId,
parentSession.getSessionHandle.getSessionId.toString,
logMsg,
statementId,
parentSession.getUsername)

try {
Type.values.foreach(typeInfo => {
val rowData = Array[AnyRef](
typeInfo.getName, // TYPE_NAME
typeInfo.toJavaSQLType.asInstanceOf[AnyRef], // DATA_TYPE
typeInfo.getMaxPrecision.getOrElse(null).asInstanceOf[AnyRef], // PRECISION
typeInfo.getLiteralPrefix, // LITERAL_PREFIX
typeInfo.getLiteralSuffix, // LITERAL_SUFFIX
typeInfo.getCreateParams, // CREATE_PARAMS
typeInfo.getNullable.asInstanceOf[AnyRef], // NULLABLE
typeInfo.isCaseSensitive.asInstanceOf[AnyRef], // CASE_SENSITIVE
typeInfo.getSearchable.asInstanceOf[AnyRef], // SEARCHABLE
typeInfo.isUnsignedAttribute.asInstanceOf[AnyRef], // UNSIGNED_ATTRIBUTE
typeInfo.isFixedPrecScale.asInstanceOf[AnyRef], // FIXED_PREC_SCALE
typeInfo.isAutoIncrement.asInstanceOf[AnyRef], // AUTO_INCREMENT
typeInfo.getLocalizedName, // LOCAL_TYPE_NAME
typeInfo.getMinimumScale.asInstanceOf[AnyRef], // MINIMUM_SCALE
typeInfo.getMaximumScale.asInstanceOf[AnyRef], // MAXIMUM_SCALE
null, // SQL_DATA_TYPE, unused
null, // SQL_DATETIME_SUB, unused
typeInfo.getNumPrecRadix // NUM_PREC_RADIX
)
rowSet.addRow(rowData)
})
setState(OperationState.FINISHED)
} catch {
case e: HiveSQLException =>
setState(OperationState.ERROR)
HiveThriftServer2.listener.onStatementError(
statementId, e.getMessage, SparkUtils.exceptionString(e))
throw e
}
HiveThriftServer2.listener.onStatementFinish(statementId)
}
}
Loading