zhaoyongjie commented on issue #24072: URL: https://github.com/apache/superset/issues/24072#issuecomment-1859252019
@sfirke The following SQL should be sent to the database when Drill-to-Detail is triggered. This means that it is unknown which column should be ordered. ```SQL SELECT * FROM tbl LIMIT X OFFSET Y ``` I think we need to add logics to determine 1) which column is a sortable column a) primary key? b) custom column if preset ? 2) if or not to apply point 1 in different dataset or database and above logic should be implemented in different database spec. -- 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]
