开发者社区> 问答> 正文

建立tsdb的meta_history表的建表语句中的字段与sqlmap_history中查询语句的

使用的版本是1.1.0 conf\spring\tsdb\sql\create_table.sql 中建立meta_history表的建表语句如下:

CREATE TABLE IF NOT EXISTS meta_history ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', gmt_create datetime NOT NULL COMMENT '创建时间', gmt_modified datetime NOT NULL COMMENT '修改时间', destination varchar(128) DEFAULT NULL COMMENT '通道名称', binlog_file varchar(64) DEFAULT NULL COMMENT 'binlog文件名', binlog_offest bigint(20) DEFAULT NULL COMMENT 'binlog偏移量', binlog_master_id varchar(64) DEFAULT NULL COMMENT 'binlog节点id', binlog_timestamp bigint(20) DEFAULT NULL COMMENT 'binlog应用的时间戳', use_schema varchar(1024) DEFAULT NULL COMMENT '执行sql时对应的schema', schema varchar(1024) DEFAULT NULL COMMENT '对应的schema', table varchar(1024) DEFAULT NULL COMMENT '对应的table', sql longtext DEFAULT NULL COMMENT '执行的sql', type varchar(256) DEFAULT NULL COMMENT 'sql类型', extra text DEFAULT NULL COMMENT '额外的扩展信息', PRIMARY KEY (id), UNIQUE KEY binlog_file_offest(destination,binlog_master_id,binlog_file,binlog_offest), KEY destination (destination), KEY destination_timestamp (destination,binlog_timestamp), KEY gmt_modified (gmt_modified) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='表结构变化明细表';

conf\spring\tsdb\sql-map\sqlmap_history.xml 中查询的字段如下:

不一致的字段: shema -> sql_shema table ->sql_table sql ->sql_text type ->sql_type

原提问者GitHub用户skymsg

展开
收起
Java工程师 2023-05-08 19:09:23 101 0
1 条回答
写回答
取消 提交回答
  • 最新主干已经修复

    原回答者GitHub用户agapple

    2023-05-09 19:06:18
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载