mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
FIX: Handle unrelated timings being moved (#30256)
This commit is contained in:
parent
aff380bf73
commit
2827ca992f
@ -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
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user