blob: cc1e2114d70c84a2bd1a0630465985eea6306681 [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.polygene.library.sql.generator.grammar.query;
import org.apache.polygene.library.sql.generator.grammar.common.SetQuantifier;
/**
* This syntax element represents two queries which have a set operation ({@code UNION}, {@code INTERSECT}, or
* {@code EXCEPT}) between them.
*
* @author Stanislav Muhametsin
* @see SetOperation
*/
public interface QueryExpressionBodyBinary
extends QueryExpressionBodyActual
{
/**
* Returns the set operation to put between queries.
*
* @return The set operation to put between queries.
* @see SetOperation
*/
SetOperation getSetOperation();
/**
* Returns the correspondence columns.
*
* @return The correspondence columns.
* @see CorrespondingSpec
*/
CorrespondingSpec getCorrespondingColumns();
/**
* Returns the query on the left side of the set operation.
*
* @return The query on the left side of the set operation.
*/
QueryExpressionBody getLeft();
/**
* Returns the query on the right side of the set operation.
*
* @return The query on the right side of the set operation.
*/
QueryExpressionBody getRight();
/**
* Returns the set quantifier for the set operation.
*
* @return The set quantifier for the set operation.
* @see SetQuantifier
*/
SetQuantifier getSetQuantifier();
}