Class SqlKillTransactionCommand
- java.lang.Object
-
- org.apache.ignite.internal.sql.command.SqlKillTransactionCommand
-
- All Implemented Interfaces:
SqlCommand
public class SqlKillTransactionCommand extends Object implements SqlCommand
KILL TRANSACTION command.
-
-
Constructor Summary
Constructors Constructor Description SqlKillTransactionCommand()Default constructor.SqlKillTransactionCommand(String xid)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetXid()SqlCommandparse(SqlLexer lex)Parse command.StringschemaName()voidschemaName(String schemaName)
-
-
-
Constructor Detail
-
SqlKillTransactionCommand
public SqlKillTransactionCommand()
Default constructor.
-
SqlKillTransactionCommand
public SqlKillTransactionCommand(String xid)
- Parameters:
xid- Transaction id.
-
-
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.
-
getXid
public String getXid()
- Returns:
- Xid.
-
-