blob: 95c32dacbcbc4f976b3e13b46a5a3c40726a87d8 [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 JdbcQueryMultipleStatementsTaskV3 extends JdbcQueryMultipleStatementsTask {
/** Serial version uid. */
private static final long serialVersionUID = 0L;
/** Allow multiple statements. */
private boolean allowMultipleStatements;
/** Query initiator ID. */
private String qryInitiatorId;
/**
* @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 flag.
* @param lazy Lazy query execution flag.
* @param allowMultipleStatements Allow multiple statements flag.
* @param qryInitiatorId Query initiator ID.
*/
public JdbcQueryMultipleStatementsTaskV3(Ignite ignite, String schemaName, String sql,
Boolean isQry, boolean loc, Object[] args, int fetchSize, boolean locQry, boolean collocatedQry,
boolean distributedJoins, boolean enforceJoinOrder, boolean lazy,
boolean allowMultipleStatements, String qryInitiatorId) {
super(ignite, schemaName, sql, isQry, loc, args, fetchSize, locQry, collocatedQry, distributedJoins, enforceJoinOrder, lazy);
this.allowMultipleStatements = allowMultipleStatements;
this.qryInitiatorId = qryInitiatorId;
}
/** {@inheritDoc} */
@Override protected boolean allowMultipleStatements() {
return allowMultipleStatements;
}
/** {@inheritDoc} */
@Override protected String queryInitiatorId() {
return qryInitiatorId;
}
}