Skip to content

Commit 7b4ee77

Browse files
committed
chore: Add an order by to the MC stats over time
1 parent 3fdff0a commit 7b4ee77

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

CFLookup/SharedMethods.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,7 @@ FROM MinecraftModStatsOverTime WITH(NOLOCK)
366366
SELECT timestamp_utc, stats
367367
FROM DailyLatest
368368
WHERE RowNumber = 1
369+
ORDER BY timestamp_utc ASC
369370
");
370371
var Stats = new Dictionary<DateTimeOffset, Dictionary<string, Dictionary<string, long>>>();
371372
while (stats.Read())

0 commit comments

Comments
 (0)