This repository has been archived by the owner on Jun 15, 2022. It is now read-only.
Set an explicit fallback ORDER BY for the migrate command #84
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
When a test creates multiple test orders within the same second, the resulting products cause MySQL to try to guess which order should come first rather than — as I had assumed — falling back to sorting by ID. As a result, ordering products by p.post_date alone cannot reliably keep two orders sorted the same way, since MySQL may decide to give precedence to any one of the rows with matching timestamps. Further details are available in MySQL's "ORDER BY Optimization" documentation.
This PR ensures that the
migrate
command explicitly falls back to sorting bywp_posts.ID
in descending order, which matches the intent of "migrate the most recent orders (which are presumably more likely to be active) first, working backwards historically".Additionally, this PR cleans up instances where tests were passing integers instead of arrays to
TestCase::count_orders_in_table_with_ids()
, relying on type coercion.Fixes #83.