LevisNgigi commented on PR #33656:
URL: https://github.com/apache/superset/pull/33656#issuecomment-2940978749
> @LevisNgigi can you show the queries that are generated in both cases?
@betodealmeida For Row limit it is;SELECT global_sales AS global_sales,
COUNT(*) AS count
FROM main.video_game_sales GROUP BY global_sales ORDER BY count DESC
LIMIT 10 OFFSET 0;
For All records it is this; SELECT global_sales AS global_sales, COUNT(*)
AS count
FROM main.video_game_sales GROUP BY global_sales ORDER BY count DESC
LIMIT 10 OFFSET 0;
SELECT COUNT(*) AS count
FROM main.video_game_sales
LIMIT 50000 OFFSET 0;
--
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]