/* Copyright (c) 2001-2009, The HSQL Development Group * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * Neither the name of the HSQL Development Group nor the names of its * contributors may be used to endorse or promote products derived from this * software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL HSQL DEVELOPMENT GROUP, HSQLDB.ORG, * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ package org.hsqldb_voltpatches; import org.hsqldb_voltpatches.HsqlNameManager.HsqlName; import org.hsqldb_voltpatches.ParserDQL.CompileContext; import org.hsqldb_voltpatches.lib.OrderedHashSet; import org.hsqldb_voltpatches.result.Result; import org.hsqldb_voltpatches.result.ResultMetaData; /** * Implementation of Statement for query expressions.<p> * * @author Fred Toussi (fredt@users dot sourceforge.net) * @version 1.9.0 * @since 1.9.0 */ public class StatementQuery extends StatementDMQL { StatementQuery(Session session, QueryExpression queryExpression, CompileContext compileContext) { super(StatementTypes.SELECT_CURSOR, StatementTypes.X_SQL_DATA, session.currentSchema); this.queryExpression = queryExpression; setDatabseObjects(compileContext); checkAccessRights(session); } StatementQuery(Session session, QueryExpression queryExpression, CompileContext compileContext, HsqlName[] targets) { super(StatementTypes.SELECT_SINGLE, StatementTypes.X_SQL_DATA, session.currentSchema); this.queryExpression = queryExpression; setDatabseObjects(compileContext); checkAccessRights(session); } @Override Result getResult(Session session) { Result result = queryExpression.getResult(session, session.getMaxRows()); result.setStatement(this); return result; } @Override public ResultMetaData getResultMetaData() { switch (type) { case StatementTypes.SELECT_CURSOR : return queryExpression.getMetaData(); case StatementTypes.SELECT_SINGLE : return queryExpression.getMetaData(); default : throw Error.runtimeError( ErrorCode.U_S0500, "CompiledStatement.getResultMetaData()"); } } @Override void getTableNamesForRead(OrderedHashSet set) { queryExpression.getBaseTableNames(set); for (int i = 0; i < subqueries.length; i++) { if (subqueries[i].queryExpression != null) { subqueries[i].queryExpression.getBaseTableNames(set); } } } @Override void getTableNamesForWrite(OrderedHashSet set) {} /************************* Volt DB Extensions *************************/ /** * VoltDB added method to get a non-catalog-dependent * representation of this HSQLDB object. * @param session The current Session object may be needed to resolve * some names. * @return XML, correctly indented, representing this object. * @throws org.hsqldb_voltpatches.HSQLInterface.HSQLParseException */ @Override VoltXMLElement voltGetStatementXML(Session session) throws org.hsqldb_voltpatches.HSQLInterface.HSQLParseException { return voltGetXMLExpression(queryExpression, parameters, session); } /**********************************************************************/ }