Skip to content

Commit

Permalink
fix bugs
Browse files Browse the repository at this point in the history
Signed-off-by: shuming.li <[email protected]>
  • Loading branch information
LiShuMing committed Nov 29, 2024
1 parent 87ba891 commit d5c5433
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -567,9 +567,9 @@ public Table getSessionAwareTable(ConnectContext ctx, Database db, TableName tab
Assert.assertEquals(partitionKey2, "dt, province");

String values1 = resultSet.getResultRows().get(0).get(7);
Assert.assertEquals(values1, "(('2022-04-15', 'guangdong'), ('2022-04-15', 'tianjin'))");
Assert.assertEquals(values1, "[[\"2022-04-15\",\"guangdong\"],[\"2022-04-15\",\"tianjin\"]]");
String values2 = resultSet.getResultRows().get(1).get(7);
Assert.assertEquals(values2, "(('2022-04-16', 'shanghai'), ('2022-04-16', 'beijing'))");
Assert.assertEquals(values2, "[[\"2022-04-16\",\"shanghai\"],[\"2022-04-16\",\"beijing\"]]");
}

@Test
Expand Down

0 comments on commit d5c5433

Please sign in to comment.