pierrejeambrun commented on code in PR #59004:
URL: https://github.com/apache/airflow/pull/59004#discussion_r2589091861
##########
airflow-core/src/airflow/api_fastapi/common/parameters.py:
##########
@@ -252,11 +252,6 @@ def to_orm(self, select: Select) -> Select:
if column is None:
column = getattr(self.model, lstriped_orderby)
- # MySQL does not support `nullslast`, and True/False ordering
depends on the
- # database implementation.
- nullscheck = case((column.isnot(None), 0), else_=1)
-
- columns.append(nullscheck)
Review Comment:
Removed because that 'case statement' prevent usage of columns indexes.
--
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]