mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 08:56:36 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
24 lines
845 B
Ruby
24 lines
845 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
class RetroRecentTimeRead < Jobs::Onceoff
|
|
def execute_onceoff(args)
|
|
# update past records by evenly distributing total time reading among each post read
|
|
sql = <<~SQL
|
|
UPDATE user_visits uv1
|
|
SET time_read = (
|
|
SELECT (
|
|
uv1.posts_read
|
|
/ (SELECT CAST(sum(uv2.posts_read) AS FLOAT) FROM user_visits uv2 where uv2.user_id = uv1.user_id)
|
|
* COALESCE((SELECT us.time_read FROM user_stats us WHERE us.user_id = uv1.user_id), 0)
|
|
)
|
|
)
|
|
WHERE EXISTS (SELECT 1 FROM user_stats stats WHERE stats.user_id = uv1.user_id AND stats.posts_read_count > 0 LIMIT 1)
|
|
AND EXISTS (SELECT 1 FROM user_visits visits WHERE visits.user_id = uv1.user_id AND visits.posts_read > 0 LIMIT 1)
|
|
SQL
|
|
|
|
DB.exec(sql)
|
|
end
|
|
end
|
|
end
|