All Downloads are FREE. Search and download functionalities are using the official Maven repository.

water.water_log_ch_tml.sql Maven / Gradle / Ivy

There is a newer version: 2.14.2
Show newest version
create table if not exists ${logger}
(
    log_id Int64,
    trace_id Nullable(String),
    level Int32 default 0,
    tag Nullable(String),
    tag1 Nullable(String),
    tag2 Nullable(String),
    tag3 Nullable(String),
    tag4 Nullable(String),
    weight Int64,
    group Nullable(String),
    service Nullable(String),
    class_name Nullable(String),
    thread_name Nullable(String),
    content Nullable(String),
    metainfo Nullable(String),
    from Nullable(String),
    log_date Nullable(Int32),
    log_fulltime Int64
)
engine = MergeTree PARTITION BY log_id
ORDER BY log_id;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy