-
public interface MetaQueryPlanMeta data for captured query plan.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Class<?>beanType()Return the bean type for the query.Stringbind()Return a description of the bind values.longcaptureCount()Return the total count of times bind capture has occurred.Stringhash()Return the hash of the plan.Stringlabel()Return the label of the query.Stringplan()Return the raw plan.ProfileLocationprofileLocation()Return the profile location for the query.longqueryTimeMicros()Return the query execution time associated with the bind values capture.Stringsql()Return the sql of the query.
-
-
-
Method Detail
-
beanType
Class<?> beanType()
Return the bean type for the query.
-
label
String label()
Return the label of the query.
-
profileLocation
ProfileLocation profileLocation()
Return the profile location for the query.
-
sql
String sql()
Return the sql of the query.
-
hash
String hash()
Return the hash of the plan.
-
bind
String bind()
Return a description of the bind values.
-
plan
String plan()
Return the raw plan.
-
queryTimeMicros
long queryTimeMicros()
Return the query execution time associated with the bind values capture.
-
captureCount
long captureCount()
Return the total count of times bind capture has occurred.
-
-