(date: string)
| 403 | } |
| 404 | |
| 405 | export function convertClickhouseDateToJs(date: string) { |
| 406 | return new Date(`${date.replace(' ', 'T')}Z`); |
| 407 | } |
| 408 | |
| 409 | const ROLLUP_DATE_PREFIX = '1970-01-01'; |
| 410 | export function isClickhouseDefaultMinDate(date: string): boolean { |
no test coverage detected