Class SqlKillScanQueryCommand
- java.lang.Object
-
- org.apache.ignite.internal.sql.command.SqlKillScanQueryCommand
-
- All Implemented Interfaces:
SqlCommand
public class SqlKillScanQueryCommand extends Object implements SqlCommand
KILL SCAN_QUERY command.
-
-
Field Summary
Fields Modifier and Type Field Description static StringKILL_SCAN_QRY_FORMATKILL SCAN format message.
-
Constructor Summary
Constructors Constructor Description SqlKillScanQueryCommand()Default constructor.SqlKillScanQueryCommand(UUID originNodeId, String cacheName, long qryId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCacheName()UUIDgetOriginNodeId()longgetQryId()SqlCommandparse(SqlLexer lex)Parse command.StringschemaName()voidschemaName(String schemaName)
-
-
-
Field Detail
-
KILL_SCAN_QRY_FORMAT
public static final String KILL_SCAN_QRY_FORMAT
KILL SCAN format message.- See Also:
- Constant Field Values
-
-
Method Detail
-
parse
public SqlCommand parse(SqlLexer lex)
Parse command.- Specified by:
parsein interfaceSqlCommand- Parameters:
lex- Lexer.- Returns:
- This instance.
-
schemaName
public String schemaName()
- Specified by:
schemaNamein interfaceSqlCommand- Returns:
- Schema name.
-
schemaName
public void schemaName(String schemaName)
- Specified by:
schemaNamein interfaceSqlCommand- Parameters:
schemaName- Schema name.
-
getOriginNodeId
public UUID getOriginNodeId()
- Returns:
- Origin node id.
-
getCacheName
public String getCacheName()
- Returns:
- Cache name.
-
getQryId
public long getQryId()
- Returns:
- Query id.
-
-