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

org.voltdb.expressions.InComparisonExpression Maven / Gradle / Ivy

There is a newer version: 10.1.1
Show newest version
/* This file is part of VoltDB.
 * Copyright (C) 2008-2018 VoltDB Inc.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with VoltDB.  If not, see .
 */

package org.voltdb.expressions;

import org.voltdb.types.ExpressionType;

/**
 *
 */
public class InComparisonExpression extends ComparisonExpression {

    public InComparisonExpression() {
        super(ExpressionType.COMPARE_IN);
    }

    @Override
    public void validate() throws Exception {
        super.validate();
        //
        // Args list is not used by IN.
        //
        if (m_args != null) {
            throw new Exception("ERROR: Args list was not null for '" + this + "'");
        }
        //
        // We always need both a left node and a right node
        //
        if (m_left == null) {
            throw new Exception("ERROR: The left node for '" + this + "' is NULL");
        } else if (m_right == null) {
            throw new Exception("ERROR: The right node for '" + this + "' is NULL");
        }

        // right needs to be vector or parameter
        if (!(m_right instanceof VectorValueExpression) && !(m_right instanceof ParameterValueExpression)) {
            throw new Exception("ERROR: The right node for '" + this + "' is not a list or a parameter");
        }
    }

    /**
     * A "x in (a, b, c)" relation cannot be reversed as "x > y" to "y < x", so
     * we return itself.
     */
    @Override
    public ComparisonExpression reverseOperator() {
       return this;
    }

    @Override
    public void finalizeValueTypes()
    {
        // First, make sure this node and its children have valid types.
        // This ignores the overall element type of the rhs.
        super.finalizeValueTypes();
        // Force the lhs type as the overall element type of the rhs.
        // The element type gets used in the EE to handle overflow/underflow cases.
        m_right.setValueType(m_left.getValueType());
        m_right.setValueSize(m_left.getValueSize());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy