⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 requiredrowordering.java

📁 derby database source code.good for you.
💻 JAVA
字号:
/*   Derby - Class org.apache.derby.iapi.sql.compile.RequiredRowOrdering   Copyright 1999, 2004 The Apache Software Foundation or its licensors, as applicable.   Licensed 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.derby.iapi.sql.compile;import org.apache.derby.iapi.error.StandardException;import org.apache.derby.iapi.util.JBitSet;/** * This interface provides a representation of the required ordering of rows * from a ResultSet.  Different operations can require ordering: ORDER BY, * DISTINCT, GROUP BY.  Some operations, like ORDER BY, require that the * columns be ordered a particular way, while others, like DISTINCT and * GROUP BY, reuire only that there be no duplicates in the result. */public interface RequiredRowOrdering{	static final int SORT_REQUIRED = 1;	static final int ELIMINATE_DUPS = 2;	static final int NOTHING_REQUIRED = 3;	/**	 * Tell whether sorting is required for this RequiredRowOrdering,	 * given a RowOrdering.	 *	 * @param rowOrdering	The order of rows in question	 *	 * @return	SORT_REQUIRED if sorting is required,	 *			ELIMINATE_DUPS if no sorting is required but duplicates	 *							must be eliminated (i.e. the rows are in	 *							the right order but there may be duplicates),	 *			NOTHING_REQUIRED is no operation is required	 *	 * @exception StandardException		Thrown on error	 */	int sortRequired(RowOrdering rowOrdering) throws StandardException;	/**	 * Tell whether sorting is required for this RequiredRowOrdering,	 * given a RowOrdering representing a partial join order, and	 * a bit map telling what tables are represented in the join order.	 * This is useful for reducing the number of cases the optimizer	 * has to consider.	 *	 * @param rowOrdering	The order of rows in the partial join order	 * @param tableMap		A bit map of the tables in the partial join order	 *	 * @return	SORT_REQUIRED if sorting is required,	 *			ELIMINATE_DUPS if no sorting is required by duplicates	 *							must be eliminated (i.e. the rows are in	 *							the right order but there may be duplicates),	 *			NOTHING_REQUIRED is no operation is required	 *	 * @exception StandardException		Thrown on error	 */	int sortRequired(RowOrdering rowOrdering, JBitSet tableMap)			throws StandardException;	/**	 * Estimate the cost of doing a sort for this row ordering, given	 * the number of rows to be sorted.  This does not take into account	 * whether the sort is really needed.  It also estimates the number of	 * result rows.	 *	 * @param estimatedInputRows	The estimated number of rows to sort	 * @param rowOrdering			The ordering of the input rows	 * @param resultCost			A place to store the resulting cost	 *	 * @exception StandardException		Thrown on error	 */	void estimateCost(double estimatedInputRows,						RowOrdering rowOrdering,						CostEstimate resultCost)					throws StandardException;	/**	 * Indicate that a sort is necessary to fulfill this required ordering.	 * This method may be called many times during a single optimization.	 */	void sortNeeded();	/**	 * Indicate that a sort is *NOT* necessary to fulfill this required	 * ordering.  This method may be called many times during a single	 * optimization.	 */	void sortNotNeeded();	boolean getSortNeeded();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -