ColeAtCharter commented on issue #16222:
URL: https://github.com/apache/druid/issues/16222#issuecomment-2301982397
Thanks, @gianm! Understood. The test example specifically contemplates
this scenario by applying an equality filter that is on the first partition
dimension where the value is strictly in between the target segment's start and
end value for that dimension:
query filter:
```
{
"type": "selector",
"dimension": "col_1",
"value": "value1jkl"
}
```
target segment metadata:
```
src1_2025-02-16T01:00:00.000Z_2025-02-16T02:00:00.000Z_2024-04-01T23:59:59.999Z_1:
partitionDimensions: ["col_1","col_2"], start: ["value1ghi","value2jkl"], end:
["value1lmn", "value2mnop"]
```
So the segment's col_1 start (`value1ghi `) should be strictly less than the
query's col_1 equality filter value (`value1jkl`) and further, strictly less
than the segment's col_1 end value (`value1lmn`).
We can look for additional examples of this behavior to get more information
about reproducing the issue.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]