FIX: Handle unrelated timings being moved ()

This commit is contained in:
Gary Pendergast 2024-12-17 10:07:04 +11:00 committed by GitHub
parent aff380bf73
commit 2827ca992f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -462,7 +462,7 @@ class PostMover
# copy post_timings for shifted posts to a temp table using the new_post_number # copy post_timings for shifted posts to a temp table using the new_post_number
# they'll be copied back after delete_invalid_post_timings makes room for them # they'll be copied back after delete_invalid_post_timings makes room for them
DB.exec(<<~SQL, post_ids: @post_ids_after_move) DB.exec <<~SQL
CREATE TEMPORARY TABLE temp_post_timings ON COMMIT DROP CREATE TEMPORARY TABLE temp_post_timings ON COMMIT DROP
AS ( AS (
SELECT pt.topic_id, mp.new_post_number as post_number, pt.user_id, pt.msecs SELECT pt.topic_id, mp.new_post_number as post_number, pt.user_id, pt.msecs
@ -479,6 +479,8 @@ class PostMover
DB.exec <<~SQL DB.exec <<~SQL
INSERT INTO post_timings (topic_id, user_id, post_number, msecs) INSERT INTO post_timings (topic_id, user_id, post_number, msecs)
SELECT DISTINCT topic_id, user_id, post_number, msecs FROM temp_post_timings SELECT DISTINCT topic_id, user_id, post_number, msecs FROM temp_post_timings
ON CONFLICT (topic_id, post_number, user_id) DO UPDATE
SET msecs = GREATEST(post_timings.msecs, excluded.msecs)
SQL SQL
end end