Skip to content

Commit

Permalink
Added missing testconsistency test case
Browse files Browse the repository at this point in the history
  • Loading branch information
suarezgpablo committed Dec 16, 2024
1 parent 09c1247 commit 3e548e4
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,15 @@ public void testWireV2NewTableMigrationFromOneTable() throws IOException {
testConsistency(name.getMethodName(), projectionAfterEvo, "wire", projectionBeforeEvo);
}
@Test
public void testWireV8NewTableMigrationFromPreviousVersion() throws IOException {
Map<String, String> projectionAfterEvo = new HashMap<String, String>();
Map<String, String> projectionBeforeEvo = new HashMap<String, String>();
projectionBeforeEvo.put("scim_user", "SELECT scim.id AS id FROM scim;");
projectionAfterEvo.put("scim_user", "SELECT scim.id AS id FROM scim ORDER BY scim.id DESC;");
projectionAfterEvo.put("scim_user_times", "SELECT scim.id AS id FROM scim ORDER BY scim.id DESC;");
testConsistency(name.getMethodName(), projectionAfterEvo, "wire", projectionBeforeEvo);
}
@Test
public void testWireV91NewTableMigrationFromOneTable() throws IOException {
Map<String, String> projectionAfterEvo = new HashMap<String, String>();
Map<String, String> projectionBeforeEvo = new HashMap<String, String>();
Expand Down

0 comments on commit 3e548e4

Please sign in to comment.