make sure search_posts is the same in both scripts

This commit is contained in:
towards-a-new-leftypol 2024-03-02 03:09:34 -05:00
parent 1e0289750d
commit c04f8ebe45
1 changed files with 2 additions and 2 deletions

View File

@ -336,7 +336,7 @@ $$ LANGUAGE sql STABLE;
-- -- To search for posts related to 'quantum computing':
-- SELECT * FROM search_posts('quantum computing');
CREATE OR REPLACE FUNCTION search_posts(search_text text)
CREATE OR REPLACE FUNCTION search_posts(search_text text, max_rows integer DEFAULT 1000)
RETURNS SETOF catalog_grid_result AS $$
WITH
query AS (
@ -365,7 +365,7 @@ RETURNS SETOF catalog_grid_result AS $$
AND attachments.attachment_idx = 1
, query
WHERE p.body_search_index @@ query.query
LIMIT 2000
LIMIT max_rows
)
SELECT
0 AS estimated_post_count,