Package org.apache.derby.iapi.services.io

Examples of org.apache.derby.iapi.services.io.FormatableProperties


           (UUID)stmtID,
           (UUID)timingID);
    }
    public Object getSortPropsDescriptor(Object sortPropsID)
    {
        FormatableProperties props = this.sortProperties;
       
        // create new scan info descriptor with some basic information
        XPLAINSortPropsDescriptor sortRSDescriptor =           
          new XPLAINSortPropsDescriptor(
              (UUID)sortPropsID,      // the sort props UUID
View Full Code Here


    this.isConstraint = isConstraint;
    this.hashtableSize = hashtableSize;
    this.hashKeyColumns = hashKeyColumns;
    this.scanQualifiers = scanQualifiers;
    this.nextQualifiers = nextQualifiers;
    this.scanProperties = new FormatableProperties();
    if (scanProperties != null)
    {
      for (Enumeration e = scanProperties.keys(); e.hasMoreElements(); )
      {
        String key = (String)e.nextElement();
View Full Code Here

              this.nextQualifiers,
              hashkey_columns,
              new Integer(this.hashtableSize)
            );
       
        FormatableProperties props = this.scanProperties;

        return XPLAINUtil.extractScanProps(scanRSDescriptor,props);
    }
View Full Code Here

      optimizerEstimatedCost
      );
    this.hashtableSize = hashtableSize;
    this.hashKeyColumns = hashKeyColumns;
    this.nextQualifiers = nextQualifiers;
    this.scanProperties = new FormatableProperties();
    if (scanProperties != null)
    {
      for (Enumeration e = scanProperties.keys(); e.hasMoreElements(); )
      {
        String key = (String)e.nextElement();
View Full Code Here

    }
    public String getRSXplainType() { return XPLAINUtil.OP_HASHTABLE; }
    public String getRSXplainDetails() { return "("+this.resultSetNumber+")"; }
    public Object getScanPropsDescriptor(Object scanPropsID)
    {
        FormatableProperties props = this.scanProperties;
       
        String isoLevel = XPLAINUtil.getIsolationLevelCode(this.isolationLevel);
       
        String hashkey_columns =
            XPLAINUtil.getHashKeyColumnNumberString(this.hashKeyColumns);
View Full Code Here

    this.tableName = tableName;
    this.userSuppliedOptimizerOverrides = userSuppliedOptimizerOverrides;
    this.indexName = indexName;
    this.isConstraint = isConstraint;
    this.qualifiers = qualifiers;
    this.scanProperties = new FormatableProperties();
    for (Enumeration e = scanProperties.keys(); e.hasMoreElements(); )
    {
      String key = (String)e.nextElement();
      this.scanProperties.put(key, scanProperties.get(key));
    }
View Full Code Here

              null,             // the next qualifiers
              null,             // the hash key column numbers
              null                 // the hash table size
            );
       
        FormatableProperties props = this.scanProperties;

        return XPLAINUtil.extractScanProps(scanRSDescriptor,props);
    }
View Full Code Here

    this.isConstraint = isConstraint;
    this.hashtableSize = hashtableSize;
    this.hashKeyColumns = hashKeyColumns;
    this.scanQualifiers = scanQualifiers;
    this.nextQualifiers = nextQualifiers;
    this.scanProperties = new FormatableProperties();
    if (scanProperties != null)
    {
      for (Enumeration e = scanProperties.keys(); e.hasMoreElements(); )
      {
        String key = (String)e.nextElement();
View Full Code Here

              this.nextQualifiers,
              hashkey_columns,
              new Integer(this.hashtableSize)
            );
       
        FormatableProperties props = this.scanProperties;

        return XPLAINUtil.extractScanProps(scanRSDescriptor,props);
    }
View Full Code Here

    this.tableName = tableName;
    this.userSuppliedOptimizerOverrides = userSuppliedOptimizerOverrides;
    this.indexName = indexName;
    this.isConstraint = isConstraint;
    this.qualifiers = qualifiers;
    this.scanProperties = new FormatableProperties();
    for (Enumeration e = scanProperties.keys(); e.hasMoreElements(); )
    {
      String key = (String)e.nextElement();
      this.scanProperties.put(key, scanProperties.get(key));
    }
View Full Code Here

TOP

Related Classes of org.apache.derby.iapi.services.io.FormatableProperties

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.