rodmax commented on issue #20521: URL: https://github.com/apache/superset/issues/20521#issuecomment-1238332360
Hi there. looking through the code i found a couple of things 1️⃣ appropriate parameter from config: ```python FILTER_SELECT_ROW_LIMIT = 10000 ``` already set to `10000` but it does not affect **native filters** behavior 2️⃣ As i can see from front-end code the `row_limit` value just hard-coded (I'm not sure, maybe somewhere further in the code this parameter is overridden) https://github.com/apache/superset/blob/d130b4a24f67a6440101f267d2d3640e34f4a154/superset-frontend/src/dashboard/components/nativeFilters/utils.ts#L78 It seems to me, native filter should use `FILTER_SELECT_ROW_LIMIT` or its own config parameter -- 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]
