com.arcadedb.query.sql.parser.DDLStatement Maven / Gradle / Ivy
/*
* Copyright © 2021-present Arcade Data Ltd ([email protected])
*
* Licensed 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.
*
* SPDX-FileCopyrightText: 2021-present Arcade Data Ltd ([email protected])
* SPDX-License-Identifier: Apache-2.0
*/
package com.arcadedb.query.sql.parser;
import com.arcadedb.database.Database;
import com.arcadedb.query.sql.executor.BasicCommandContext;
import com.arcadedb.query.sql.executor.CommandContext;
import com.arcadedb.query.sql.executor.DDLExecutionPlan;
import com.arcadedb.query.sql.executor.InternalExecutionPlan;
import com.arcadedb.query.sql.executor.ResultSet;
import java.util.*;
/**
* Created by luigidellaquila on 12/08/16.
*/
public abstract class DDLStatement extends Statement {
public DDLStatement(final int id) {
super(id);
}
public abstract ResultSet executeDDL(CommandContext context);
public ResultSet execute(final Database db, final Object[] args, final CommandContext parentcontext, final boolean usePlanCache) {
final BasicCommandContext context = new BasicCommandContext();
if (parentcontext != null)
context.setParentWithoutOverridingChild(parentcontext);
context.setDatabase(db);
context.setInputParameters(args);
final DDLExecutionPlan executionPlan = (DDLExecutionPlan) createExecutionPlan(context, false);
return executionPlan.executeInternal();
}
public ResultSet execute(final Database db, final Map params, final CommandContext parentcontext, final boolean usePlanCache) {
final BasicCommandContext context = new BasicCommandContext();
if (parentcontext != null) {
context.setParentWithoutOverridingChild(parentcontext);
}
context.setDatabase(db);
context.setInputParameters(params);
final DDLExecutionPlan executionPlan = (DDLExecutionPlan) createExecutionPlan(context, false);
return executionPlan.executeInternal();
}
public InternalExecutionPlan createExecutionPlan(final CommandContext context, final boolean enableProfiling) {
return new DDLExecutionPlan(context, this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy