Interval option throws error when numeric range above 2147483647

I am getting failed to create query exception on using Interval operation in regexp query when max value in following query is above 2147483647 (max int value). Can this value be increased to match long size?

Works fine
"value": "mo<1-2147483647>",

Throws exception
"value": "mo<1-2147483648>",

Complete Query
{
"query": {
"bool": {
"must": [{
"regexp": {
"number": {
"value": "mo<1-2147483648>",
"flags": "ALL"
}
}
}
]
}
}
}

"root_cause": [
{
"type": "query_shard_exception",
"reason": "failed to create query: {\n "bool" : {\n "must" : [\n {\n "regexp" : {\n "number" : {\n "value" : "mo<1-2147483648>",\n "flags_value" : 65535,\n "max_determinized_states" : 10000,\n "boost" : 1.0\n }\n }\n }\n ],\n "disable_coord" : false,\n "adjust_pure_negative" : true,\n "boost" : 1.0\n }\n}",
"index_uuid": "U5F7R52PScuv0Z9TDgACpg",
"index": "test_index"
}

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.