Skip to content

Commit

Permalink
code style
Browse files Browse the repository at this point in the history
  • Loading branch information
JNSimba committed Sep 3, 2024
1 parent 0f1615b commit 4ceb2fd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,11 @@ public boolean schemaChange(JsonNode recordRoot) {
String dorisTbl = getCreateTableIdentifier(recordRoot);
changeContext.getTableMapping().put(cdcTbl, dorisTbl);
this.tableMapping = changeContext.getTableMapping();
LOG.info("create table ddl status: {}, add tableMapping {},{}", status, cdcTbl, dorisTbl);
LOG.info(
"create table ddl status: {}, add tableMapping {},{}",
status,
cdcTbl,
dorisTbl);
}
} else if (eventType.equals(EventType.ALTER)) {
Tuple2<String, String> dorisTableTuple = getDorisTableTuple(recordRoot);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,11 @@ public boolean schemaChange(JsonNode recordRoot) {
String dorisTbl = getCreateTableIdentifier(recordRoot);
changeContext.getTableMapping().put(cdcTbl, dorisTbl);
this.tableMapping = changeContext.getTableMapping();
LOG.info("create table ddl status: {}, add tableMapping {},{}", status, cdcTbl, dorisTbl);
LOG.info(
"create table ddl status: {}, add tableMapping {},{}",
status,
cdcTbl,
dorisTbl);
}
} else if (eventType.equals(EventType.ALTER)) {
Tuple2<String, String> dorisTableTuple = getDorisTableTuple(recordRoot);
Expand Down

0 comments on commit 4ceb2fd

Please sign in to comment.