Skip to content

Commit

Permalink
Add more tests on ColumnValueMatchedShadowAlgorithm (#33575)
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu authored Nov 6, 2024
1 parent 84435cb commit aa79306
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ static Collection<PreciseColumnShadowValue<Comparable<?>>> createFalseCase(final
result.add(new PreciseColumnShadowValue<>(shadowTable, ShadowOperationType.INSERT, shadowColumn, '2'));
result.add(new PreciseColumnShadowValue<>(shadowTable, ShadowOperationType.INSERT, shadowColumn, new BigInteger("2")));
result.add(new PreciseColumnShadowValue<>(shadowTable, ShadowOperationType.INSERT, shadowColumn, new BigDecimal("2")));
result.add(new PreciseColumnShadowValue<>(shadowTable, ShadowOperationType.INSERT, "invalid_col", new BigDecimal("2")));
result.add(new PreciseColumnShadowValue<>(shadowTable, ShadowOperationType.UPDATE, shadowColumn, 1));
result.add(new PreciseColumnShadowValue<>(shadowTable, ShadowOperationType.UPDATE, shadowColumn, 1L));
result.add(new PreciseColumnShadowValue<>(shadowTable, ShadowOperationType.UPDATE, shadowColumn, "1"));
Expand Down

0 comments on commit aa79306

Please sign in to comment.