mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 10:44:42 +00:00
fix: Maybe sqldelight doesn't support WITH RECURSIVE?
This commit is contained in:
parent
0cc7d03968
commit
d6edbae357
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
CREATE VIEW scanlators_view AS -- Probably should migrate these to a real table
|
||||
WITH RECURSIVE split(seq, _id, name, str) AS (
|
||||
WITH split(seq, _id, name, str) AS (
|
||||
SELECT 0, M._id, NULL, replace(ifnull(M.filtered_scanlators, ''), ' & ', ',')||',' FROM mangas AS M
|
||||
UNION ALL SELECT
|
||||
seq+1,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue