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 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

                  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

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.