namespaceZtdQuery\Shadow\Mutation\Table

Classes 7§

CreateTableAsSelectMutationApplies CREATE TABLE ... AS SELECT ... operation to the virtual schema. This mutation creates a new table with structure and data from SELECT.
CreateTableLikeMutationApplies CREATE TABLE ... LIKE ... operation to the virtual schema. This mutation copies the TableDefinition from an existing table to a new table.
CreateTableMutationApplies CREATE TABLE operation to the virtual schema. This mutation registers a new table in the TableDefinitionRegistry.
DropTableMutationApplies DROP TABLE operation to the virtual schema. This mutation marks a table as removed from the virtual schema and clears its rows.
MultiTruncateMutationApplies a single TRUNCATE statement to every target shadow table.
SynchronizeMutationReplaces a table with a database-evaluated complete result set.
TruncateMutationApplies TRUNCATE operation to the shadow store by clearing all rows.