Convert episode page queries from SQLite to MySQL

This commit is contained in:
Roan Horning 2022-10-21 20:07:53 -04:00
parent 4af117fb7a
commit 5612eeed42
Signed by untrusted user: rho_n
GPG Key ID: 234AEF20B72D5769
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@
WITH episode_maxmin AS (
SELECT MAX(id) AS \'latest\', MIN(id) AS \'earliest\', ? AS \'id\'
FROM eps
WHERE eps.date < date (\'now\', \'+1 days\')
WHERE eps.date < DATE_ADD(NOW(), INTERVAL 1 DAY)
),
episode_date AS (
SELECT eps.date
@ -26,7 +26,7 @@
FROM eps
INNER JOIN episode_date
ON eps.date > episode_date.date
WHERE eps.date < date (\'now\')
WHERE eps.date < NOW()
),
comment_tallies AS (
SELECT

View File

@ -1,7 +1,7 @@
<!--% USE DBI(constants.driver, constants.user, constants.password) %-->
<!--% FOREACH episode IN DBI.query(
'select eps.id from eps
where eps.date < date (\'now\', \'+1 days\') '
where eps.date < DATE_ADD(NOW(), INTERVAL 1 DAY) '
) %-->
,<!--% episode.id %-->
<!--% END %-->