Skip to content

Commit 361fbb8

Browse files
committed
[db-sync] Fix SyncPeriod to be an open-ended interval
1 parent 29d25ac commit 361fbb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/ee/db-sync/src/export.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export class TableUpdate {
6666
dataQueryParams.push(this.start);
6767
}
6868
if (this.end) {
69-
timeConditions.push(`${this.table.timeColumn} <= ?`);
69+
timeConditions.push(`${this.table.timeColumn} < ?`);
7070
dataQueryParams.push(this.end);
7171
}
7272
if (this.table.expiryColumn) {

0 commit comments

Comments
 (0)