This project has retired. For details please refer to its Attic page.
queryPlan

queryPlan element

Type: queryPlan
Namespace: (default namespace)
XML Schema: ns0.xsd

Example XML

<?xml version="1.0" encoding="UTF-8"?> <queryPlan> <planString>...</planString> <hasSubQuery>...</hasSubQuery> <execMode>...</execMode> <prepareHandle> <prepareHandleId>...</prepareHandleId> </prepareHandle> <scanMode>...</scanMode> <tablesQueried> <tablesQueried>...</tablesQueried> <tablesQueried>...</tablesQueried> <!--...more "tablesQueried" elements...--> </tablesQueried> <queryCost> <estimatedResourceUsage>...</estimatedResourceUsage> <estimatedExecTimeMillis>...</estimatedExecTimeMillis> <type>...</type> </queryCost> </queryPlan>

Example JSON

{ "planString" : "...", "hasSubQuery" : false, "execMode" : "...", "prepareHandle" : { "prepareHandleId" : "..." }, "scanMode" : "...", "tablesQueried" : [ "...", ... ], "queryCost" : { "estimatedResourceUsage" : ..., "estimatedExecTimeMillis" : ..., "type" : "LOW" } }