Skip to content
Open
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -2462,14 +2462,10 @@ private Status executeExecuteChangeStreamQuery(
// For initial partition query (no partition token) we simulate precision of the timestamp
// in nanoseconds as that's closer inlined with the production client code.

String startTime =
timestampToString(
!action.hasPartitionToken(), Timestamps.toMicros(action.getStartTime()));
String startTime = timestampToString(false, Timestamps.toMicros(action.getStartTime()));
String endTime = "null";
if (action.hasEndTime()) {
endTime =
timestampToString(
!action.hasPartitionToken(), Timestamps.toMicros(action.getEndTime()));
endTime = timestampToString(false, Timestamps.toMicros(action.getEndTime()));
}
String heartbeat = "null";
if (action.hasHeartbeatMilliseconds()) {
Expand Down
Loading