Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Formatting was bothering me
  • Loading branch information
RussellSpitzer committed May 25, 2022
commit cc932326bc1f5f05ee2e10fda2c07ddf64f8dd8b
Original file line number Diff line number Diff line change
Expand Up @@ -1206,9 +1206,13 @@ public void testMergeMixedCaseAlignsUpdateAndInsertActions() {
ImmutableList.of(row(1, -2, "new_str_1"), row(2, -20, "new_str_2")),
sql("SELECT * FROM %s ORDER BY id", tableName));

assertEquals("Output should match", ImmutableList.of(row(1, -2, "new_str_1")),
assertEquals(
"Output should match",
ImmutableList.of(row(1, -2, "new_str_1")),
sql("SELECT * FROM %s WHERE id = 1 ORDER BY id", tableName));
assertEquals("Output should match", ImmutableList.of(row(2, -20, "new_str_2")),
assertEquals(
"Output should match",
ImmutableList.of(row(2, -20, "new_str_2")),
sql("SELECT * FROM %s WHERE b = 'new_str_2'ORDER BY id", tableName));
}

Expand Down