blob: fd8be4c01c0ef1eaa44da4d458fa936ff9f7ca06 [file] [log] [blame]
/*
* 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
import org.apache.spark.sql.catalyst.parser.ParserUtils.{string, withOrigin}
import org.apache.spark.sql.catalyst.parser.SqlBaseParser
import org.apache.spark.sql.catalyst.parser.SqlBaseParser.{AddTableColumnsContext, ChangeColumnContext, CreateTableContext, ShowTablesContext}
import org.apache.spark.sql.catalyst.plans.logical.LogicalPlan
import org.apache.spark.sql.catalyst.CarbonParserUtil
import org.apache.spark.sql.execution.SparkSqlAstBuilder
import org.apache.spark.sql.execution.command.{AlterTableAddColumnsModel, AlterTableDataTypeChangeModel}
import org.apache.spark.sql.execution.command.schema.{CarbonAlterTableAddColumnCommand, CarbonAlterTableColRenameDataTypeChangeCommand}
import org.apache.spark.sql.execution.command.table.{CarbonExplainCommand, CarbonShowTablesCommand}
import org.apache.spark.sql.parser.CarbonSpark2SqlParser
import org.apache.spark.sql.types.DecimalType
import org.apache.carbondata.core.constants.CarbonCommonConstants
import org.apache.carbondata.core.util.CarbonProperties
trait SqlAstBuilderHelper extends SparkSqlAstBuilder {
override def visitChangeColumn(ctx: ChangeColumnContext): LogicalPlan = {
val newColumn = visitColType(ctx.colType)
val isColumnRename = if (!ctx.identifier.getText.equalsIgnoreCase(newColumn.name)) {
true
} else {
false
}
val (typeString, values): (String, Option[List[(Int, Int)]]) = newColumn.dataType match {
case d: DecimalType => ("decimal", Some(List((d.precision, d.scale))))
case _ => (newColumn.dataType.typeName.toLowerCase, None)
}
val alterTableColRenameAndDataTypeChangeModel =
AlterTableDataTypeChangeModel(
CarbonParserUtil.parseDataType(typeString, values, isColumnRename),
CarbonParserUtil.convertDbNameToLowerCase(Option(ctx.tableIdentifier().db).map(_.getText)),
ctx.tableIdentifier().table.getText.toLowerCase,
ctx.identifier.getText.toLowerCase,
newColumn.name.toLowerCase,
isColumnRename)
CarbonAlterTableColRenameDataTypeChangeCommand(alterTableColRenameAndDataTypeChangeModel)
}
def visitAddTableColumns(parser: CarbonSpark2SqlParser,
ctx: AddTableColumnsContext): LogicalPlan = {
val cols = Option(ctx.columns).toSeq.flatMap(visitColTypeList)
val fields = parser.getFields(cols)
val tblProperties = scala.collection.mutable.Map.empty[String, String]
val tableModel = CarbonParserUtil.prepareTableModel(false,
CarbonParserUtil.convertDbNameToLowerCase(Option(ctx.tableIdentifier().db).map(_.getText)),
ctx.tableIdentifier.table.getText.toLowerCase,
fields,
Seq.empty,
tblProperties,
None,
true)
val alterTableAddColumnsModel = AlterTableAddColumnsModel(
Option(ctx.tableIdentifier().db).map(_.getText),
ctx.tableIdentifier.table.getText,
tblProperties.toMap,
tableModel.dimCols,
tableModel.msrCols,
tableModel.highcardinalitydims.getOrElse(Seq.empty))
CarbonAlterTableAddColumnCommand(alterTableAddColumnsModel)
}
override def visitCreateTable(ctx: CreateTableContext): LogicalPlan = {
super.visitCreateTable(ctx)
}
override def visitShowTables(ctx: ShowTablesContext): LogicalPlan = {
withOrigin(ctx) {
if (CarbonProperties.getInstance()
.getProperty(CarbonCommonConstants.CARBON_SHOW_DATAMAPS,
CarbonCommonConstants.CARBON_SHOW_DATAMAPS_DEFAULT).toBoolean) {
super.visitShowTables(ctx)
} else {
CarbonShowTablesCommand(
Option(ctx.db).map(_.getText),
Option(ctx.pattern).map(string))
}
}
}
override def visitExplain(ctx: SqlBaseParser.ExplainContext): LogicalPlan = {
CarbonExplainCommand(super.visitExplain(ctx))
}
}