public interface UpdatePlanner
Modifier and Type | Method and Description |
---|---|
int |
executeCreateIndex(CreateIndexData data,
Transaction tx)
Executes the specified create index statement, and returns the number of
affected records.
|
int |
executeCreateTable(CreateTableData data,
Transaction tx)
Executes the specified create table statement, and returns the number of
affected records.
|
int |
executeCreateView(CreateViewData data,
Transaction tx)
Executes the specified create view statement, and returns the number of
affected records.
|
int |
executeDelete(DeleteData data,
Transaction tx)
Executes the specified delete statement, and returns the number of
affected records.
|
int |
executeDropIndex(DropIndexData data,
Transaction tx)
Executes the specified drop index statement, and returns the number of
affected records.
|
int |
executeDropTable(DropTableData data,
Transaction tx)
Executes the specified drop table statement, and returns the number of
affected records.
|
int |
executeDropView(DropViewData data,
Transaction tx)
Executes the specified drop view statement, and returns the number of
affected records.
|
int |
executeInsert(InsertData data,
Transaction tx)
Executes the specified insert statement, and returns the number of
affected records.
|
int |
executeModify(ModifyData data,
Transaction tx)
Executes the specified modify statement, and returns the number of
affected records.
|
int executeInsert(InsertData data, Transaction tx)
data
- the parsed representation of the insert statementtx
- the calling transactionint executeDelete(DeleteData data, Transaction tx)
data
- the parsed representation of the delete statementtx
- the calling transactionint executeModify(ModifyData data, Transaction tx)
data
- the parsed representation of the modify statementtx
- the calling transactionint executeCreateTable(CreateTableData data, Transaction tx)
data
- the parsed representation of the create table statementtx
- the calling transactionint executeCreateView(CreateViewData data, Transaction tx)
data
- the parsed representation of the create view statementtx
- the calling transactionint executeCreateIndex(CreateIndexData data, Transaction tx)
data
- the parsed representation of the create index statementtx
- the calling transactionint executeDropTable(DropTableData data, Transaction tx)
data
- the parsed representation of the drop table statementtx
- the calling transactionint executeDropView(DropViewData data, Transaction tx)
data
- the parsed representation of the drop view statementtx
- the calling transactionint executeDropIndex(DropIndexData data, Transaction tx)
data
- the parsed representation of the drop index statementtx
- the calling transactionCopyright © 2022 VanillaDB Organization. All rights reserved.