Package org.apache.derby.iapi.store.access

Examples of org.apache.derby.iapi.store.access.StaticCompiledOpenConglomInfo


                  int isolationLevel,
                  double optimizerEstimatedRowCount,
                  double optimizerEstimatedCost)
      throws StandardException
  {
        StaticCompiledOpenConglomInfo scoci = (StaticCompiledOpenConglomInfo)(activation.getPreparedStatement().
            getSavedObject(scociItem));

    return new HashScanResultSet(
                conglomId,
                scoci,
View Full Code Here


                  int isolationLevel,
                  double optimizerEstimatedRowCount,
                  double optimizerEstimatedCost)
      throws StandardException
  {
        StaticCompiledOpenConglomInfo scoci = (StaticCompiledOpenConglomInfo)(activation.getPreparedStatement().
            getSavedObject(scociItem));
    return new DistinctScanResultSet(
                conglomId,
                scoci,
                activation,
View Full Code Here

                  boolean oneRowScan,
                  double optimizerEstimatedRowCount,
                  double optimizerEstimatedCost)
      throws StandardException
  {
        StaticCompiledOpenConglomInfo scoci = (StaticCompiledOpenConglomInfo)(activation.getPreparedStatement().
            getSavedObject(scociItem));
    return new TableScanResultSet(
                conglomId,
                scoci,
                activation,
View Full Code Here

    //prefetching for RR and Serializable when holdability was explicitly set to true.
    //But starting Cloudscape 10.0 release, in order to be DB2 compatible, holdability is set to true by default.
    //Because of that, we can not continue to disable the prefetching for RR and Serializable, since it causes
    //severe performance degradation - bug 5953.   

        StaticCompiledOpenConglomInfo scoci = (StaticCompiledOpenConglomInfo)(activation.getPreparedStatement().
            getSavedObject(scociItem));
    return new BulkTableScanResultSet(
                conglomId,
                scoci,
                activation,
View Full Code Here

                  boolean oneRowScan,
                  double optimizerEstimatedRowCount,
                  double optimizerEstimatedCost)
      throws StandardException
  {
    StaticCompiledOpenConglomInfo scoci = (StaticCompiledOpenConglomInfo)
      activation.getPreparedStatement().getSavedObject(scociItem);

    return new MultiProbeTableScanResultSet(
                conglomId,
                scoci,
View Full Code Here

                  long fkIndexConglomId,
                  int fkColArrayItem,
                  int rltItem)
      throws StandardException
  {
        StaticCompiledOpenConglomInfo scoci = (StaticCompiledOpenConglomInfo)(activation.getPreparedStatement().
            getSavedObject(scociItem));
    return new DependentResultSet(
                conglomId,
                scoci,
                activation,
View Full Code Here

    FormatableIntHolder[] fihArray =
        FormatableIntHolder.getFormatableIntHolders(hashKeyColumns);
    FormatableArrayHolder hashKeyHolder = new FormatableArrayHolder(fihArray);
    int hashKeyItem = acb.addItem(hashKeyHolder);
    long conglomNumber = cd.getConglomerateNumber();
    StaticCompiledOpenConglomInfo scoci = getLanguageConnectionContext().
                        getTransactionCompile().
                          getStaticCompiledConglomInfo(conglomNumber);

    acb.pushGetResultSetFactoryExpression(mb);
View Full Code Here

    FormatableIntHolder[] fihArray =
        FormatableIntHolder.getFormatableIntHolders(hashKeyColumns);
    FormatableArrayHolder hashKeyHolder = new FormatableArrayHolder(fihArray);
    int hashKeyItem = acb.addItem(hashKeyHolder);
    long conglomNumber = cd.getConglomerateNumber();
    StaticCompiledOpenConglomInfo scoci = getLanguageConnectionContext().
                        getTransactionCompile().
                          getStaticCompiledConglomInfo(conglomNumber);

    acb.pushGetResultSetFactoryExpression(mb);
View Full Code Here

    /* Create the ReferencedColumnsDescriptorImpl which tells which columns
     * come from the index.
     */
    int indexColMapItem = acb.addItem(new ReferencedColumnsDescriptorImpl(getIndexColMapping()));
    long heapConglomNumber = baseCD.getConglomerateNumber();
    StaticCompiledOpenConglomInfo scoci = getLanguageConnectionContext().
                        getTransactionCompile().
                          getStaticCompiledConglomInfo(heapConglomNumber);

    acb.pushGetResultSetFactoryExpression(mb);

View Full Code Here

    FormatableIntHolder[] fihArray =
        FormatableIntHolder.getFormatableIntHolders(hashKeyColumns);
    FormatableArrayHolder hashKeyHolder = new FormatableArrayHolder(fihArray);
    int hashKeyItem = acb.addItem(hashKeyHolder);
    long conglomNumber = cd.getConglomerateNumber();
    StaticCompiledOpenConglomInfo scoci = getLanguageConnectionContext().
                        getTransactionCompile().
                          getStaticCompiledConglomInfo(conglomNumber);

    acb.pushGetResultSetFactoryExpression(mb);
View Full Code Here

TOP

Related Classes of org.apache.derby.iapi.store.access.StaticCompiledOpenConglomInfo

Copyright © 2018 www.massapicom. 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.