forked from AbleOS/holey-bytes
fixing infinite loop when fetching cycles
This commit is contained in:
parent
3d721812f0
commit
db62434736
|
@ -694,7 +694,7 @@ mod db {
|
||||||
fetch_deps: "
|
fetch_deps: "
|
||||||
WITH RECURSIVE roots(name, author, code) AS (
|
WITH RECURSIVE roots(name, author, code) AS (
|
||||||
SELECT name, author, code FROM post WHERE name = ? AND author = ?
|
SELECT name, author, code FROM post WHERE name = ? AND author = ?
|
||||||
UNION ALL
|
UNION
|
||||||
SELECT post.name, post.author, post.code FROM
|
SELECT post.name, post.author, post.code FROM
|
||||||
post JOIN import ON post.name = import.to_name
|
post JOIN import ON post.name = import.to_name
|
||||||
AND post.author = import.to_author
|
AND post.author = import.to_author
|
||||||
|
|
Loading…
Reference in a new issue