github.com/matrixorigin/matrixone@v1.2.0/test/distributed/cases/log/query_sql_statement_hotspot.result (about)

     1  create account if not exists `sql_statement_hotspot` ADMIN_NAME 'admin' IDENTIFIED BY '123456';
     2  desc system.sql_statement_hotspot;
     3  no such table system.sql_statement_hotspot
     4  desc system.sql_statement_hotspot;
     5  Field    Type    Null    Key    Default    Extra    Comment
     6  statement_id    VARCHAR(36)    NO        null
     7  statement    TEXT(0)    NO        null
     8  timeconsumed    DOUBLE(0)    YES        null
     9  memorysize    DECIMAL128(38)    YES        null
    10  collecttime    DATETIME(6)    NO        null
    11  node    VARCHAR(36)    NO        null
    12  account    VARCHAR(1024)    NO        null
    13  user    VARCHAR(1024)    NO        null
    14  type    VARCHAR(1024)    NO        null
    15  select count(1) >= 0 as checked from system.sql_statement_hotspot;
    16  checked
    17  true
    18  drop account `sql_statement_hotspot`;