All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.flink.sql.parser.ddl.SqlDropTable Maven / Gradle / Ivy

/*
 * 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.flink.sql.parser.ddl;

import org.apache.calcite.sql.SqlCall;
import org.apache.calcite.sql.SqlKind;
import org.apache.calcite.sql.SqlNode;
import org.apache.calcite.sql.SqlOperator;
import org.apache.calcite.sql.SqlWriter;
import org.apache.calcite.sql.parser.SqlParserPos;

import java.util.List;

/**
 * DROP TABLE DDL sql call.
 */
public class SqlDropTable extends SqlCall {

	private SqlNode tableName;
	private boolean ifExists;

	public SqlDropTable(SqlParserPos pos, SqlNode tableName, boolean ifExists) {
		super(pos);
		this.tableName = tableName;
		this.ifExists = ifExists;
	}

	@Override
	public SqlKind getKind() {
		return SqlKind.OTHER_DDL;
	}

	@Override
	public SqlOperator getOperator() {
		return null;
	}

	@Override
	public List getOperandList() {
		return null;
	}

	public SqlNode getTableName() {
		return tableName;
	}

	public void setTableName(SqlNode viewName) {
		this.tableName = viewName;
	}

	public boolean getIfExists() {
		return this.ifExists;
	}

	public void setIfExists(boolean ifExists) {
		this.ifExists = ifExists;
	}

	public void unparse(SqlWriter writer, int leftPrec, int rightPrec) {
		writer.keyword("DROP");
		writer.keyword("TABLE");
		if (ifExists) {
			writer.keyword("IF EXISTS");
		}
		tableName.unparse(writer, leftPrec, rightPrec);
	}

	public void validate() {
		//todo:
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy