Skip to content

Commit

Permalink
add debug log for IoTDBSessionSimpleIT.insertTabletWithStringValuesTest
Browse files Browse the repository at this point in the history
  • Loading branch information
shuwenwei committed Jan 14, 2025
1 parent 86c9b67 commit e08b04d
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -606,6 606,10 @@ public void insertTabletWithStringValuesTest() {
while (dataSet.hasNext()) {
RowRecord rowRecord = dataSet.next();
List<Field> fields = rowRecord.getFields();
// this test may occasionally fail by IndexOutOfBoundsException
if (fields.size() != 7) {
fail("The number of fields is not correct. fields values: " fields);
}
assertEquals(fields.get(5).getBinaryV(), fields.get(6).getBinaryV());
}
} catch (Exception e) {
Expand Down

0 comments on commit e08b04d

Please sign in to comment.