Uses of Interface
oracle.pgx.api.Operation
-
Packages that use Operation Package Description oracle.pgx.api This package contains the main Java APIs. -
-
Uses of Operation in oracle.pgx.api
Methods in oracle.pgx.api that return Operation Modifier and Type Method Description Operation
PgxGraph. explainPgql(java.lang.String pgqlString)
Blocking version ofPgxGraph.explainPgql(String)
.Operation
PgxSession. explainPgql(java.lang.String pgqlString)
Blocking version ofPgxSession.explainPgql(String)
.Methods in oracle.pgx.api that return types with arguments of type Operation Modifier and Type Method Description PgxFuture<Operation>
PgxGraph. explainPgqlAsync(java.lang.String pgqlString)
Explain the execution plan of a pattern matching query.PgxFuture<Operation>
PgxSession. explainPgqlAsync(java.lang.String pgqlString)
Explain the execution plan of a pattern matching query.java.util.List<Operation>
Operation. getChildren()
Non leaf operations can have multiple child operations, which will be returned by this functionMethods in oracle.pgx.api with parameters of type Operation Modifier and Type Method Description boolean
Operation. isSameQueryPlan(Operation other)
Check if the query plan with this operation as root node is equal to the query plan with 'other' as root node.
-