Class QueryParserResultCommand
- java.lang.Object
-
- org.apache.ignite.internal.processors.query.h2.QueryParserResultCommand
-
public class QueryParserResultCommand extends Object
Parsing result: command.
-
-
Constructor Summary
Constructors Constructor Description QueryParserResultCommand(@Nullable SqlCommand cmdNative, @Nullable GridSqlStatement cmdH2, boolean noOp)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description @Nullable GridSqlStatementcommandH2()@Nullable SqlCommandcommandNative()booleannoOp()
-
-
-
Constructor Detail
-
QueryParserResultCommand
public QueryParserResultCommand(@Nullable @Nullable SqlCommand cmdNative, @Nullable @Nullable GridSqlStatement cmdH2, boolean noOp)Constructor.- Parameters:
cmdNative- Command (native).cmdH2- Command (H2).noOp- Whether this is a no-op command.
-
-
Method Detail
-
commandNative
@Nullable public @Nullable SqlCommand commandNative()
- Returns:
- Command (native).
-
commandH2
@Nullable public @Nullable GridSqlStatement commandH2()
- Returns:
- Command (H2).
-
noOp
public boolean noOp()
- Returns:
- Whether this is a no-op command.
-
-