mirror of
https://github.com/perlbot/perlbuut
synced 2025-06-07 16:55:42 -04:00
27 lines
1.6 KiB
SQL
27 lines
1.6 KiB
SQL
WITH RECURSIVE factoid_lookup_order (depth, namespace, server, alias_namespace, alias_server, parent_namespace, parent_server, recursive) AS (
|
|
SELECT 0 AS depth, namespace, server, alias_namespace, alias_server, parent_namespace, parent_server, recursive
|
|
FROM factoid_config
|
|
WHERE namespace = '#perlbot' AND server = 'freenode.net' -- PLACEHOLDER TARGET
|
|
UNION ALL
|
|
SELECT p.depth+1 AS depth, m.namespace, m.server, m.alias_namespace, m.alias_server, m.parent_namespace, m.parent_server, m.recursive
|
|
FROM factoid_config m
|
|
INNER JOIN factoid_lookup_order p
|
|
ON m.namespace = p.parent_namespace AND m.server = p.parent_server AND p.recursive
|
|
),
|
|
get_latest_factoid (depth, factoid_id, subject, copula, predicate, author, modified_time, compose_macro, protected, original_subject, deleted, server, namespace) AS (
|
|
SELECT DISTINCT ON(lo.depth) lo.depth, factoid_id, subject, copula, predicate, author, modified_time, compose_macro, protected, original_subject, f.deleted, f.server, f.namespace
|
|
FROM factoid f
|
|
INNER JOIN factoid_lookup_order lo
|
|
ON COALESCE(f.server, '') = COALESCE(lo.alias_server, lo.server)
|
|
AND COALESCE(f.namespace, '') = COALESCE(lo.alias_namespace, lo.namespace)
|
|
WHERE original_subject = 'hi' -- PLACEHOLDER TARGET
|
|
ORDER BY depth ASC, factoid_id DESC
|
|
)
|
|
SELECT * FROM get_latest_factoid WHERE NOT deleted ORDER BY depth ASC, factoid_id DESC LIMIT 1;
|
|
|
|
|
|
|
|
-- SELECT factoid_id, subject, copula, predicate, author, modified_time, compose_macro, protected, original_subject
|
|
-- FROM factoid
|
|
-- WHERE original_subject = ?
|
|
-- ORDER BY factoid_id DESC
|