Commit 6023b96
committed
fix: [#190] SQL error in SQLite
The SQL query:
```
SELECT
COUNT(*) as count
FROM
(
SELECT
tt.torrent_id,
tp.username AS uploader,
tt.info_hash,
ti.title,
ti.description,
tt.category_id,
DATE_FORMAT(tt.date_uploaded, '%Y-%m-%d %H:%i:%s') AS date_uploaded,
tt.size AS file_size,
CAST(COALESCE(sum(ts.seeders), 0) as signed) as seeders,
CAST(COALESCE(sum(ts.leechers), 0) as signed) as leechers
FROM
torrust_torrents tt
INNER JOIN torrust_user_profiles tp ON tt.uploader_id = tp.user_id
INNER JOIN torrust_torrent_info ti ON tt.torrent_id = ti.torrent_id
LEFT JOIN torrust_torrent_tracker_stats ts ON tt.torrent_id = ts.torrent_id
WHERE
title LIKE ?
GROUP BY
tt.torrent_id
) AS count_table
```
should not use the `DATE_FORMAT` function in SQLite.1 parent 8737e92 commit 6023b96
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
361 | 361 | | |
362 | 362 | | |
363 | 363 | | |
364 | | - | |
| 364 | + | |
365 | 365 | | |
366 | 366 | | |
367 | 367 | | |
| |||
0 commit comments