Examples of dropConglomerate()


Examples of org.apache.derby.iapi.store.access.TransactionController.dropConglomerate()

        td.resetHeapConglomNumber();

        if (dropAndRedeclare)
        {
            //remove the old conglomerate from the system
            tc.dropConglomerate(cid);

            replaceDeclaredGlobalTempTable(td.getName(), td);
        }

        return(td);
View Full Code Here

Examples of org.apache.derby.iapi.store.access.TransactionController.dropConglomerate()

    TransactionController tc = activation.getTransactionController();

    if (uniqueIndexCreated)
    {
      tc.dropConglomerate(uniqueIndexConglomId);
      uniqueIndexCreated = false;
    }

    if (positionIndexCreated)
    {
View Full Code Here

Examples of org.apache.derby.iapi.store.access.TransactionController.dropConglomerate()

      uniqueIndexCreated = false;
    }

    if (positionIndexCreated)
    {
      tc.dropConglomerate(positionIndexConglomId);
      positionIndexCreated = false;
    }

    if (conglomCreated)
    {
View Full Code Here

Examples of org.apache.derby.iapi.store.access.TransactionController.dropConglomerate()

      positionIndexCreated = false;
    }

    if (conglomCreated)
    {
      tc.dropConglomerate(CID);
      conglomCreated = false;
            CID = 0;
    }
        else
        {
View Full Code Here

Examples of org.apache.derby.iapi.store.access.TransactionController.dropConglomerate()

            TableDescriptor td =
                ((TempTableInfo)
                 (allDeclaredGlobalTempTables.get(i))).getTableDescriptor();

            //remove the conglomerate created for this temp table
            tc.dropConglomerate(td.getHeapConglomerateId());

            //remove it from the list of temp tables
            allDeclaredGlobalTempTables.remove(i);
        }
View Full Code Here

Examples of org.apache.derby.iapi.store.access.TransactionController.dropConglomerate()

        td.resetHeapConglomNumber();

        if (dropAndRedeclare)
        {
            //remove the old conglomerate from the system
            tc.dropConglomerate(cid);

            replaceDeclaredGlobalTempTable(td.getName(), td);
        }

        return(td);
View Full Code Here

Examples of org.apache.derby.iapi.store.access.TransactionController.dropConglomerate()

      {
          /* Drop statistics */
          dd.dropStatisticsDescriptors(td.getUUID(), getUUID(), tc);
         
          /* Drop the physical conglomerate */
          tc.dropConglomerate(getConglomerateNumber());
      }

      /* Drop the conglomerate descriptor */
      dd.dropConglomerateDescriptor(this, tc);
     
View Full Code Here

Examples of org.apache.derby.iapi.store.access.TransactionController.dropConglomerate()

            TableDescriptor td =
                ((TempTableInfo)
                 (allDeclaredGlobalTempTables.get(i))).getTableDescriptor();

            //remove the conglomerate created for this temp table
            tc.dropConglomerate(td.getHeapConglomerateId());

            //remove it from the list of temp tables
            allDeclaredGlobalTempTables.remove(i);
        }
View Full Code Here

Examples of org.apache.derby.iapi.store.access.TransactionController.dropConglomerate()

        td.resetHeapConglomNumber();

        if (dropAndRedeclare)
        {
            //remove the old conglomerate from the system
            tc.dropConglomerate(cid);

            replaceDeclaredGlobalTempTable(td.getName(), td);
        }

        return(td);
View Full Code Here

Examples of org.apache.derby.iapi.store.access.TransactionController.dropConglomerate()

        throw StandardException.newException(SQLState.LANG_TABLE_NOT_FOUND_DURING_EXECUTION, fullTableName);
      }

      if (td.getTableType() ==  TableDescriptor.GLOBAL_TEMPORARY_TABLE_TYPE) {
        dm.invalidateFor(td, DependencyManager.DROP_TABLE, lcc);
        tc.dropConglomerate(td.getHeapConglomerateId());
        lcc.dropDeclaredGlobalTempTable(tableName);
        return;
      }
    }
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.