server: WIP tantivy integration
This commit is contained in:
@@ -8,3 +8,4 @@ SELECT
|
||||
uid,
|
||||
id
|
||||
FROM post
|
||||
WHERE title ILIKE '%grapheme%' OR summary ILIKE '%grapheme%';
|
||||
|
||||
13
server/sql/threads-from-uid.sql
Normal file
13
server/sql/threads-from-uid.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
SELECT
|
||||
site,
|
||||
date,
|
||||
is_read,
|
||||
title,
|
||||
uid,
|
||||
name
|
||||
FROM
|
||||
post p
|
||||
JOIN feed f ON p.site = f.slug
|
||||
WHERE
|
||||
uid = ANY ($1)
|
||||
;
|
||||
Reference in New Issue
Block a user