Examples of RowLocation


Examples of org.apache.derby.iapi.types.RowLocation

        {
            if (this.container != null)
            {
                SanityManager.ASSERT(this.getConglomerate() instanceof B2I);

                RowLocation rowloc = (RowLocation)
                    row[((B2I)(this.getConglomerate())).rowLocationColumn];

                SanityManager.ASSERT(
                    !rowloc.isNull(), "RowLocation value is null");
            }
        }

        return(super.insert(row));
  }
View Full Code Here

Examples of org.apache.derby.iapi.types.RowLocation

        ScanController.GE,              // startSearchOperation
        null,                           //scanQualifier,
        null,                           //stop position-through last row
        ScanController.GT);             // stopSearchOperation

    RowLocation          heapLocation =
            heapScan.newRowLocationTemplate();

    ConglomerateController    indexController =
      tc.openConglomerate(
        indexConglomerateNumber,
View Full Code Here

Examples of org.apache.derby.iapi.types.RowLocation

    private void compressTable()
    throws StandardException
  {
    long          newHeapConglom;
    Properties        properties = new Properties();
    RowLocation        rl;

    if (SanityManager.DEBUG)
    {
      if (lockGranularity != '\0')
      {
View Full Code Here

Examples of org.apache.derby.iapi.types.RowLocation

    throws StandardException
  {
    ExecRow          emptyHeapRow;
    long          newHeapConglom;
    Properties        properties = new Properties();
    RowLocation        rl;

    if (SanityManager.DEBUG)
    {
      if (lockGranularity != '\0')
      {
View Full Code Here

Examples of org.apache.derby.iapi.types.RowLocation

          "getPreparedStatement().getSavedObject(itemNumber) expected to be " +
          "instance of RowLocation, not " +
          getPreparedStatement().getSavedObject(itemNumber).getClass().getName() +
          ", query is " + getPreparedStatement().getSource());
      }
      RowLocation rl = (RowLocation) getPreparedStatement().getSavedObject(itemNumber);
      if (! (rl.cloneObject() instanceof RowLocation))
      {
        SanityManager.THROWASSERT(
          "rl.cloneObject() expected to be " +
          "instance of RowLocation, not " +
          rl.getClass().getName() +
          ", query is " + getPreparedStatement().getSource());
      }
    }
    /* We have to return a clone of the saved RowLocation due
     * to the shared cache of SPSs.
View Full Code Here

Examples of org.apache.derby.iapi.types.RowLocation

    ConglomerateController  heapCC;
    ConstraintDescriptor  cd = null;
    ExecIndexRow        indexRow1;
    ExecIndexRow      indexTemplateRow;
    ExecRow         outRow;
    RowLocation        baseRowLocation;
    ScanController      scanController;
    TransactionController  tc;

    // Get the current transaction controller
    tc = getTransactionCompile();
View Full Code Here

Examples of org.apache.derby.iapi.types.RowLocation

      throws StandardException
  {
    ExecIndexRow        indexRow1;
    ExecIndexRow      indexTemplateRow;
    ExecRow         outRow;
    RowLocation        baseRowLocation;
    ConglomerateController  heapCC = null;
    ScanController      scanController = null;
    TransactionController  tc;
    TabInfoImpl         ti = getNonCoreTI(SYSCONSTRAINTS_CATALOG_NUM);
    SYSCONSTRAINTSRowFactory rf = (SYSCONSTRAINTSRowFactory) ti.getCatalogRowFactory();
View Full Code Here

Examples of org.apache.derby.iapi.types.RowLocation

        /* OK to fetch into the template row,
         * since we won't be doing a next.
         */
    if (scanController.fetchNext(indexTemplateRow.getRowArray()))
    {
      RowLocation  baseRowLocation;


      baseRowLocation = (RowLocationindexTemplateRow.getColumn(
                        indexTemplateRow.nColumns());
 
View Full Code Here

Examples of org.apache.derby.iapi.types.RowLocation

    ConglomerateController    cc;
    ExecRow            baseRow;
    ExecIndexRow        indexableRow;
    int              numColumns;
    long            conglomId;
    RowLocation          rl;
    CatalogRowFactory      rf = ti.getCatalogRowFactory();
    IndexRowGenerator      irg;
    ConglomerateDescriptor  conglomerateDescriptor;

    initSystemIndexVariables(ddg, ti, indexNumber);
View Full Code Here

Examples of org.apache.derby.iapi.types.RowLocation

    CatalogRowFactory    rf = ti.getCatalogRowFactory();
    ConglomerateController  heapCC;
    ExecIndexRow        indexRow1;
    ExecIndexRow      indexTemplateRow;
    ExecRow         outRow;
    RowLocation        baseRowLocation;
    ScanController      scanController;
    TransactionController  tc;
    TupleDescriptor      td = null;

    // Get the current transaction controller
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.