Changes between Initial Version and Version 1 of Ticket #35977, comment 3


Ignore:
Timestamp:
Dec 6, 2024, 9:23:59 AM (12 days ago)
Author:
Simon Charette

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35977, comment 3

    initial v1  
    11Agree with Sarah here!
    22
    3 The lack of ordering consistency when retrieving objects from the database **without an explicit ordering** is not specified is not a Postgres or serialization specific problem.
     3The lack of ordering consistency when retrieving objects from the database **without an explicit ordering** is not a Postgres or serialization specific problem.
    44
    55When no `ORDERY BY` is specified the database can choose to return values in the order it wants which is usually the fastest one. In the case of database like MySQL that usually means by primary key as that's how the data is clustered/organized on disk while on Postgres it depends on multiple factors.
Back to Top