We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb20ce3 commit aad63f4Copy full SHA for aad63f4
components/ee/db-sync/src/export.ts
@@ -66,7 +66,7 @@ export class TableUpdate {
66
dataQueryParams.push(this.start);
67
}
68
if (this.end) {
69
- timeConditions.push(`${this.table.timeColumn} <= ?`);
+ timeConditions.push(`${this.table.timeColumn} < ?`);
70
dataQueryParams.push(this.end);
71
72
if (this.table.expiryColumn) {
0 commit comments