Skip to content

Commit

Permalink
Update validation to include useInt64Timestamps
Browse files Browse the repository at this point in the history
  • Loading branch information
PhongChuong committed Dec 19, 2024
1 parent fba6a65 commit 61f387c
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1756,12 +1756,14 @@ public void testComplicateSchemaWithPendingStream()
Iterator<FieldValueList> queryIter = queryResult.getValues().iterator();
assertTrue(queryIter.hasNext());
assertEquals(
"[FieldValue{attribute=REPEATED, value=[FieldValue{attribute=PRIMITIVE, value=aaa},"
+ " FieldValue{attribute=PRIMITIVE, value=aaa}]}]",
"[FieldValue{attribute=REPEATED, value=[FieldValue{attribute=PRIMITIVE, value=aaa,"
+ " useInt64Timestamps=false}, FieldValue{attribute=PRIMITIVE, value=aaa,"
+ " useInt64Timestamps=false}]}]",
queryIter.next().get(1).getRepeatedValue().toString());
assertEquals(
"[FieldValue{attribute=REPEATED, value=[FieldValue{attribute=PRIMITIVE, value=bbb},"
+ " FieldValue{attribute=PRIMITIVE, value=bbb}]}]",
"[FieldValue{attribute=REPEATED, value=[FieldValue{attribute=PRIMITIVE, value=bbb,"
+ " useInt64Timestamps=false}, FieldValue{attribute=PRIMITIVE, value=bbb,"
+ " useInt64Timestamps=false}]}]",
queryIter.next().get(1).getRepeatedValue().toString());
assertFalse(queryIter.hasNext());
}
Expand Down

0 comments on commit 61f387c

Please sign in to comment.