blob: 6d295f631ca6682e9eb08dd6fb94b17047f1b2d0 [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.ignite.internal.jdbc2;
import org.apache.ignite.Ignite;
import org.apache.ignite.IgniteJdbcDriver;
/**
* Task for SQL queries execution through {@link IgniteJdbcDriver}.
* The query can contains several SQL statements.
*/
class JdbcQueryMultipleStatementsNotAllowTask extends JdbcQueryMultipleStatementsTask {
/** Serial version uid. */
private static final long serialVersionUID = 0L;
/**
* @param ignite Ignite.
* @param schemaName Schema name.
* @param sql Sql query.
* @param isQry Operation type flag - query or not - to enforce query type check.
* @param loc Local execution flag.
* @param args Args.
* @param fetchSize Fetch size.
* @param locQry Local query flag.
* @param collocatedQry Collocated query flag.
* @param distributedJoins Distributed joins flag.
* @param enforceJoinOrder Enforce joins order falg.
* @param lazy Lazy query execution flag.
*/
public JdbcQueryMultipleStatementsNotAllowTask(Ignite ignite, String schemaName, String sql, Boolean isQry, boolean loc,
Object[] args, int fetchSize, boolean locQry, boolean collocatedQry, boolean distributedJoins,
boolean enforceJoinOrder, boolean lazy) {
super(ignite, schemaName, sql, isQry, loc, args, fetchSize, locQry, collocatedQry, distributedJoins,
enforceJoinOrder, lazy);
}
/** {@inheritDoc} */
@Override protected boolean allowMultipleStatements() {
return false;
}
}