[FEA] row_number
should work with all types of order-by columns
#12182
Labels
row_number
should work with all types of order-by columns
#12182
This is a follow-up to #12178.
In its current form,
row_number
has similar restrictions to the other ranking functions (rank
,dense_rank
, etc.), in terms of the permitted data types for the order-by column.It would be good to remove the restrictions for
row_number
. Whilerank()
,dense_rank()
, andpercent_rank()
need to compare the values of the order-by column rows to determine the rank value,row_number()
does not.The text was updated successfully, but these errors were encountered: