namespaceZtdQuery\Shadow\Mutation\Table
Classes 7§
| CreateTableAsSelectMutation | Applies CREATE TABLE ... AS SELECT ... operation to the virtual schema.
This mutation creates a new table with structure and data from SELECT. |
| CreateTableLikeMutation | Applies CREATE TABLE ... LIKE ... operation to the virtual schema.
This mutation copies the TableDefinition from an existing table to a new table. |
| CreateTableMutation | Applies CREATE TABLE operation to the virtual schema.
This mutation registers a new table in the TableDefinitionRegistry. |
| DropTableMutation | Applies DROP TABLE operation to the virtual schema.
This mutation marks a table as removed from the virtual schema and clears its rows. |
| MultiTruncateMutation | Applies a single TRUNCATE statement to every target shadow table. |
| SynchronizeMutation | Replaces a table with a database-evaluated complete result set. |
| TruncateMutation | Applies TRUNCATE operation to the shadow store by clearing all rows. |