Examples of XPLAINResultSetDescriptor


Examples of org.apache.derby.impl.sql.catalog.XPLAINResultSetDescriptor

    }
    public String getRSXplainType() { return XPLAINUtil.OP_DELETE; }
    public Object getResultSetDescriptor(Object rsID, Object parentID,
            Object scanID, Object sortID, Object stmtID, Object timingID)
    {
        return new XPLAINResultSetDescriptor(
           (UUID)rsID,
           getRSXplainType(),
           getRSXplainDetails(),
           null,                              // the number of opens
           new Integer(this.indexesUpdated),
View Full Code Here

Examples of org.apache.derby.impl.sql.catalog.XPLAINResultSetDescriptor

            Object scanID, Object sortID, Object stmtID, Object timingID)
    {
        String lockMode = XPLAINUtil.getLockModeCode(this.lockString);
        String lockGran = XPLAINUtil.getLockGranularityCode(this.lockString);
       
        return new XPLAINResultSetDescriptor(
           (UUID)rsID,
           getRSXplainType(),
           getRSXplainDetails(),
           new Integer(this.numOpens),            // the number of opens
           null,                           // the number of index updates
View Full Code Here

Examples of org.apache.derby.impl.sql.catalog.XPLAINResultSetDescriptor

    public String getRSXplainType() { return XPLAINUtil.OP_DELETE; }
    public String getRSXplainDetails() { return XPLAINUtil.OP_VTI; }
    public Object getResultSetDescriptor(Object rsID, Object parentID,
            Object scanID, Object sortID, Object stmtID, Object timingID)
    {
        return new XPLAINResultSetDescriptor(
           (UUID)rsID,
           getRSXplainType(),
           getRSXplainDetails(),
           null,                              // the number of opens
           null,                              // the number of index updates
View Full Code Here

Examples of org.apache.derby.impl.sql.catalog.XPLAINResultSetDescriptor

    public String getRSXplainDetails() { return null; }

    public Object getResultSetDescriptor(Object rsID, Object parentID,
            Object scanID, Object sortID, Object stmtID, Object timingID)
    {
        return new XPLAINResultSetDescriptor(
           (UUID)rsID,
           getRSXplainType(),
           getRSXplainDetails(),
           new Integer(this.numOpens),
           null,                              // the number of index updates
View Full Code Here

Examples of org.apache.derby.impl.sql.catalog.XPLAINResultSetDescriptor

            Object scanID, Object sortID, Object stmtID, Object timingID)
    {
        String lockMode = XPLAINUtil.getLockModeCode(this.lockString);
        String lockGran = XPLAINUtil.getLockGranularityCode(this.lockString);
       
        return new XPLAINResultSetDescriptor(
           (UUID)rsID,
           getRSXplainType(),
           getRSXplainDetails(),
           new Integer(this.numOpens),
           null,                           // the number of index updates
View Full Code Here

Examples of org.apache.derby.impl.sql.catalog.XPLAINResultSetDescriptor

   
    public String getRSXplainType() { return XPLAINUtil.OP_UPDATE; }
    public Object getResultSetDescriptor(Object rsID, Object parentID,
            Object scanID, Object sortID, Object stmtID, Object timingID)
    {
        return new XPLAINResultSetDescriptor(
           (UUID)rsID,
           getRSXplainType(),
           getRSXplainDetails(),
           null,                              // the number of opens
           new Integer(this.indexesUpdated),
View Full Code Here

Examples of org.apache.derby.impl.sql.catalog.XPLAINResultSetDescriptor

    return MessageService.getTextMessage(SQLState.RTS_JOIN);
  }
    public Object getResultSetDescriptor(Object rsID, Object parentID,
            Object scanID, Object sortID, Object stmtID, Object timingID)
    {
        return new XPLAINResultSetDescriptor(
           (UUID)rsID,
           getRSXplainType(),
           getRSXplainDetails(),
           new Integer(this.numOpens),
           null,                           // index updates
View Full Code Here

Examples of org.apache.derby.impl.sql.catalog.XPLAINResultSetDescriptor

        return op_details;
    }
    public Object getResultSetDescriptor(Object rsID, Object parentID,
            Object scanID, Object sortID, Object stmtID, Object timingID)
    {
        return new XPLAINResultSetDescriptor(
           (UUID)rsID,
           getRSXplainType(),
           getRSXplainDetails(),
           new Integer(this.numOpens),
           null,                           // index updates
View Full Code Here

Examples of org.apache.derby.impl.sql.catalog.XPLAINResultSetDescriptor

    public String getRSXplainType() { return XPLAINUtil.OP_INSERT; }
    public String getRSXplainDetails() { return XPLAINUtil.OP_VTI; }
    public Object getResultSetDescriptor(Object rsID, Object parentID,
            Object scanID, Object sortID, Object stmtID, Object timingID)
    {
        return new XPLAINResultSetDescriptor(
           (UUID)rsID,
           getRSXplainType(),
           getRSXplainDetails(),
           null,                              // the number of opens
           null,                              // the number of index updates
View Full Code Here

Examples of org.apache.derby.impl.sql.catalog.XPLAINResultSetDescriptor

    }
    public String getRSXplainType() { return XPLAINUtil.OP_AGGREGATE; }
    public Object getResultSetDescriptor(Object rsID, Object parentID,
            Object scanID, Object sortID, Object stmtID, Object timingID)
    {
        return new XPLAINResultSetDescriptor(
           (UUID)rsID,
           getRSXplainType(),
           getRSXplainDetails(),
           new Integer(this.numOpens),
           null,                              // the number of index updates
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.