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

📄 t_secondaryindexrow.java

📁 derby database source code.good for you.
💻 JAVA
字号:
/*   Derby - Class org.apache.derbyTesting.unitTests.store.T_SecondaryIndexRow   Copyright 1997, 2005 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.derbyTesting.unitTests.store;import org.apache.derby.impl.store.access.conglomerate.*;import org.apache.derby.iapi.services.sanity.SanityManager;import org.apache.derby.iapi.services.io.Storable;import org.apache.derby.iapi.error.StandardException;import org.apache.derby.iapi.types.DataValueDescriptor;import org.apache.derby.iapi.types.RowLocation;/**This class implements a row which will be stored in a secondary index on a heap table.  <p>This class creates a new DataValueDescriptor array which will be the row used to insert into the secondary index.  The fields of this object array are made up of references to DataValueDescriptors provided by the caller: the DataValueDescriptors in the template and a RowLocation.The interface is designed to support the standard access method interfacewhere callers provide a single template and then read rows into that templateover and over.  This class keeps a reference to the objects in the templateand the rowlocation, so the state of this object changes whenever the caller changes the template.The caller provides a template which will contain a heap row,and a RowLocation which provides the location of the row within the heap table.<p>So for example to create an index from a base table by reading the base tableand inserting each row one at a time into the secondary index you would do something like:DataValueDescriptors[] template = get_template_for_base_table();RowLocation            rowloc   = ScanController_var.newRowLocationTemplate();T_SecondaryIndexRow    indrow   = new T_SecondaryIndexRow();indrow.init(template, rowloc, numcols_in_index);while (ScanController_variable.next()){     fetch(template)    fetchLocation(rowloc)    ConglomerateController_on_btree.insert(indrow.getRow());}**/public class T_SecondaryIndexRow{    DataValueDescriptor[]     row;    RowLocation  init_rowlocation = null;    /* Constructors for This class: */    public T_SecondaryIndexRow(){}    /* Private/Protected methods of This class: */    /* Public Methods of T_SecondaryIndexRow class: */    /**     * get the rows location field.     *	 * @return The base table row location field from the secondary index.     *	 * @exception  StandardException  Standard exception policy.     **/    /*    private RowLocation getRowLocationField()		throws StandardException    {        return(init_rowlocation);    }    */    /**     * Initialize the class.     * <p>     * Save away pointers to the base table template row, and the rowlocation     * class.  Build default map of base columns to key columns, this map     * can be changed with setMap().     * <p>     *     * @param template    The template for the base table row.     * @param rowlocation The template for the row location.     * @param numkeys     The total number of columns in the secondary index     *                    including the rowlocation column.     *	 * @exception  StandardException  Standard exception policy.     **/    public void init(    DataValueDescriptor[]   template,    RowLocation             rowlocation,    int                     numkeys)        throws StandardException    {        if (SanityManager.DEBUG)        {            if (numkeys != (template.length + 1))                SanityManager.THROWASSERT(                    "numkeys = " + numkeys +                     " template.length = " + template.length);        }        init_rowlocation = rowlocation;        /* create new object array for the row, and copy all object references          * from template row to new secondary index row.         */        row = new DataValueDescriptor[numkeys];        System.arraycopy(template, 0, row, 0, template.length);        /* add the reference to the row location column as the last column */        row[row.length - 1] = rowlocation;    }    /**     * Return the secondary index row.     * <p>     * Return the DataValueDescriptor array that represents the branch row,      * for use in raw store calls to fetch, insert, and update.     * <p>     *	 * @return The branch row object array.     **/    public DataValueDescriptor[] getRow()    {        return(this.row);    }	public String toString()	{		String s = "{ ";		for (int colid = 0; colid < row.length; colid++)		{			s += row[colid];			if (colid < (row.length - 1))				s += ", ";		}		s += " }";		return s;	}}

⌨️ 快捷键说明

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