Change the timestamp behavior for history to include items whose timestamp is the same as our birth, to better illustrate the incremental history improvements
This commit is contained in:
parent
36dfc9f1bf
commit
a4581cb233
@ -368,8 +368,8 @@ static size_t offset_of_next_item_fish_2_0(const char *begin, size_t mmap_length
|
||||
has_timestamp = parse_timestamp(interior_line, ×tamp);
|
||||
}
|
||||
|
||||
/* Skip this item if the timestamp is at or after our cutoff. */
|
||||
if (has_timestamp && timestamp >= cutoff_timestamp)
|
||||
/* Skip this item if the timestamp is past our cutoff. */
|
||||
if (has_timestamp && timestamp > cutoff_timestamp)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user