Skip to content

Commit

Permalink
fix ci failures
Browse files Browse the repository at this point in the history
Signed-off-by: Eugene Klimov <[email protected]>
  • Loading branch information
Slach committed Jan 27, 2025
1 parent b19c206 commit feb214c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/datasource/datasource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -392,8 +392,8 @@ export class CHDataSource
meta: response.meta,
keys: keys,
tillNow: options.rangeRaw?.to === 'now',
from: SqlQueryHelper.convertTimestamp(options.range.from),
to: SqlQueryHelper.convertTimestamp(options.range.to),
from: convertTimestamp(options.range.from),
to: convertTimestamp(options.range.to),
});

if (target.format === 'table') {
Expand Down

0 comments on commit feb214c

Please sign in to comment.