mirror of
https://github.com/osukey/osukey.git
synced 2025-06-10 05:48:05 +09:00
Add filename to output rows
This commit is contained in:
parent
6bfb31a635
commit
9d4c5e9cb6
3
.github/workflows/test-diffcalc.yml
vendored
3
.github/workflows/test-diffcalc.yml
vendored
@ -148,6 +148,7 @@ jobs:
|
|||||||
SELECT
|
SELECT
|
||||||
m.beatmap_id,
|
m.beatmap_id,
|
||||||
m.mods,
|
m.mods,
|
||||||
|
b.filename,
|
||||||
m.diff_unified as 'sr_master',
|
m.diff_unified as 'sr_master',
|
||||||
p.diff_unified as 'sr_pr',
|
p.diff_unified as 'sr_pr',
|
||||||
(p.diff_unified - m.diff_unified) as 'diff'
|
(p.diff_unified - m.diff_unified) as 'diff'
|
||||||
@ -156,6 +157,8 @@ jobs:
|
|||||||
ON m.beatmap_id = p.beatmap_id
|
ON m.beatmap_id = p.beatmap_id
|
||||||
AND m.mode = p.mode
|
AND m.mode = p.mode
|
||||||
AND m.mods = p.mods
|
AND m.mods = p.mods
|
||||||
|
JOIN osu_pr.osu_beatmaps b
|
||||||
|
ON b.beatmap_id = p.beatmap_id
|
||||||
WHERE abs(m.diff_unified - p.diff_unified) > 0.1
|
WHERE abs(m.diff_unified - p.diff_unified) > 0.1
|
||||||
ORDER BY abs(m.diff_unified - p.diff_unified)
|
ORDER BY abs(m.diff_unified - p.diff_unified)
|
||||||
DESC
|
DESC
|
||||||
|
Loading…
x
Reference in New Issue
Block a user