Consider a read-only table T, the query pattern of this table is:
select some_columns
from T
where some_conditions
order by fixed_col1, fixed_col2
Is there a way to let me omit the order by clause at the runtime, and presort the table offline and store the sorted rows in T, so that when I select without order by, the selected rows are already sorted?
PS: the behaviour has to be documented somewhere, or a common sense to the PG community.