feat(api): 增加压缩参数记录

This commit is contained in:
v-zhangjc9
2024-04-29 15:31:44 +08:00
parent b30ce6d675
commit 6167a94fcf
3 changed files with 67 additions and 42 deletions

View File

@@ -618,22 +618,6 @@ public interface SQLConstants {
* 字段 type 别名值 tahcm.type 类型
*/
String TYPE_A = _alias_.getAlias() + "." + TYPE_O;
/**
* 字段 source_schema 原始值 source_schema 库名
*/
String SOURCE_SCHEMA_O = "source_schema";
/**
* 字段 source_schema 别名值 tahcm.source_schema 库名
*/
String SOURCE_SCHEMA_A = _alias_.getAlias() + "." + SOURCE_SCHEMA_O;
/**
* 字段 source_table 原始值 source_table 表名
*/
String SOURCE_TABLE_O = "source_table";
/**
* 字段 source_table 别名值 tahcm.source_table 表名
*/
String SOURCE_TABLE_A = _alias_.getAlias() + "." + SOURCE_TABLE_O;
/**
* 字段 compaction_plan_instant 原始值 compaction_plan_instant 压缩计划时间点
*/