1
0
Fork 0
mirror of synced 2024-10-05 20:44:47 +13:00
This commit is contained in:
Mel O'Hagan 2022-06-21 09:41:08 +01:00
parent a2572889e9
commit bb083899a0

View file

@ -107,11 +107,9 @@ export const buildLuceneQuery = filter => {
} }
if (operator.startsWith("range")) { if (operator.startsWith("range")) {
const minint = const minint =
SqlNumberTypeRangeMap[externalType]?.min || SqlNumberTypeRangeMap[externalType]?.min || Number.MIN_SAFE_INTEGER
Number.MIN_SAFE_INTEGER
const maxint = const maxint =
SqlNumberTypeRangeMap[externalType]?.max || SqlNumberTypeRangeMap[externalType]?.max || Number.MAX_SAFE_INTEGER
Number.MAX_SAFE_INTEGER
if (!query.range[field]) { if (!query.range[field]) {
query.range[field] = { query.range[field] = {
low: type === "number" ? minint : "0000-00-00T00:00:00.000Z", low: type === "number" ? minint : "0000-00-00T00:00:00.000Z",