CREATE MATERIALIZED VIEW LOG
Description
This statement is used to create a materialized view log.
A materialized view log (MLOG) records incremental updates to the base table (a regular table or a materialized view) to support the fast refresh feature of materialized views. An MLOG is a tracking table that monitors changes in the base table and applies these changes to the corresponding materialized view for fast refresh.
info
seekdb does not support specifying partitions for mlog at this time. The partitions of mlog are bound to those of the base table.
Privilege requirements
To create a materialized view log, you must have the CREATE TABLE privilege and the SELECT privilege on the base table. For more information about privileges in seekdb, see Privilege types.