Skip to content

Commit

Permalink
add log to find problem
Browse files Browse the repository at this point in the history
  • Loading branch information
loserwang1024 committed Nov 29, 2023
1 parent 67c00fe commit 1be6d2d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,9 @@ public void testEnableBackfillWithPreHighWaterMark() throws Exception {
"+I[15213, user_15213, Shanghai, 123567891234]");
// when enable backfill, the wal log between [snapshot_point, high_watermark) will be
// applied as snapshot image
StringBuilder stringBuilder = new StringBuilder();
records.stream().forEach(item -> stringBuilder.append(item));
log.info(stringBuilder.toString());
assertEqualsInAnyOrder(expectedRecords, records);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@ public void testEnableBackfillWithPreHighWaterMark() throws Exception {
"+I[15213, user_15213, Shanghai, 123567891234]");
// when enable backfill, the wal log between [snapshot_point, high_watermark) will be
// applied as snapshot image
StringBuilder stringBuilder = new StringBuilder();
records.stream().forEach(item -> stringBuilder.append(item));
log.info(stringBuilder.toString());
assertEqualsInAnyOrder(expectedRecords, records);
}

Expand Down

0 comments on commit 1be6d2d

Please sign in to comment.