gianm commented on code in PR #17940:
URL: https://github.com/apache/druid/pull/17940#discussion_r2052891867
##########
web-console/src/views/segments-view/segments-view.tsx:
##########
@@ -345,6 +346,9 @@ export class SegmentsView extends
React.PureComponent<SegmentsViewProps, Segment
orderByClause,
`LIMIT ${pageSize * 1000}`,
]);
+
+ // This is needed because there might be an IN filter with a lot
of intervals, the number of which exceeds the default inFunctionThreshold
+ sqlQueryContext.inFunctionThreshold = 1000;
Review Comment:
Will the console never do an `IN` of more than 1000 values when writing
`sys` queries? This should be larger than the largest possible `IN` the console
will generate.
--
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]