| java.lang.Object org.apache.derby.impl.sql.execute.rts.RealBasicNoPutResultSetStatistics
All known Subclasses: org.apache.derby.impl.sql.execute.rts.RealNoPutResultSetStatistics,
RealBasicNoPutResultSetStatistics | abstract class RealBasicNoPutResultSetStatistics implements ResultSetStatistics(Code) | | ResultSetStatistics implemenation for BasicNoPutResultSetImpl.
author: jerry |
Constructor Summary | |
public | RealBasicNoPutResultSetStatistics(int numOpens, int rowsSeen, int rowsFiltered, long constructorTime, long openTime, long nextTime, long closeTime, double optimizerEstimatedRowCount, double optimizerEstimatedCost) |
Method Summary | |
final protected String | dumpEstimatedCosts(String subIndent) | final protected String | dumpTimeStats(String indent, String subIndent) Dump out the time information for run time stats. | public Vector | getChildren() Get the objects to be displayed when this tree object is expanded. | public long | getChildrenTime() Return the time for all operations performed by the children of this node. | public double | getEstimatedRowCount() Get the estimated row count for the number of rows returned
by the associated query or statement. | abstract public String | getNodeName() Format for display, a name for this node. | public String | getNodeOn() If this node is on a database item (like a table or an index), then provide a
string that describes the on item. | public long | getNodeTime() Return the time for all operations performed by this node, but not the
time for the children of this node. | public long | getTotalTime() Return the time for all operations performed by this node, and the children
of this node. |
closeTime | public long closeTime(Code) | | |
constructorTime | public long constructorTime(Code) | | |
inspectNum | public long inspectNum(Code) | | |
inspectOverall | public long inspectOverall(Code) | | |
nextTime | public long nextTime(Code) | | |
numOpens | public int numOpens(Code) | | |
openTime | public long openTime(Code) | | |
optimizerEstimatedCost | public double optimizerEstimatedCost(Code) | | |
optimizerEstimatedRowCount | public double optimizerEstimatedRowCount(Code) | | |
rowsFiltered | public int rowsFiltered(Code) | | |
rowsSeen | public int rowsSeen(Code) | | |
RealBasicNoPutResultSetStatistics | public RealBasicNoPutResultSetStatistics(int numOpens, int rowsSeen, int rowsFiltered, long constructorTime, long openTime, long nextTime, long closeTime, double optimizerEstimatedRowCount, double optimizerEstimatedCost)(Code) | | |
dumpEstimatedCosts | final protected String dumpEstimatedCosts(String subIndent)(Code) | | Dump out the estimated cost information
Nothing. |
dumpTimeStats | final protected String dumpTimeStats(String indent, String subIndent)(Code) | | Dump out the time information for run time stats.
Nothing. |
getChildren | public Vector getChildren()(Code) | | Get the objects to be displayed when this tree object is expanded.
The objects returned can be of any type, including addtional Inspectables.
java.util.Vector A vector of objects. |
getChildrenTime | public long getChildrenTime()(Code) | | Return the time for all operations performed by the children of this node.
|
getEstimatedRowCount | public double getEstimatedRowCount()(Code) | | Get the estimated row count for the number of rows returned
by the associated query or statement.
The estimated number of rows returned by the associatedquery or statement. |
getNodeName | abstract public String getNodeName()(Code) | | Format for display, a name for this node.
|
getNodeOn | public String getNodeOn()(Code) | | If this node is on a database item (like a table or an index), then provide a
string that describes the on item.
|
getNodeTime | public long getNodeTime()(Code) | | Return the time for all operations performed by this node, but not the
time for the children of this node.
|
getTotalTime | public long getTotalTime()(Code) | | Return the time for all operations performed by this node, and the children
of this node. The times included open, next, and close.
|
|
|