store_api::metric_engine_consts

Constant PHYSICAL_TABLE_METADATA_KEY

source
pub const PHYSICAL_TABLE_METADATA_KEY: &str = "physical_metric_table";
Expand description

Metadata key present in the CREATE TABLE ... WITH () clause. This key is used to identify the table is a physical metric table. E.g.:

CREATE TABLE physical_table (
    ...
)
ENGINE = metric
WITH (
    physical_metric_table,
);