limit search results to 2000 items

This commit is contained in:
towards-a-new-leftypol 2024-03-01 23:50:27 -05:00
parent db6f168c2f
commit 09bb17f19c
2 changed files with 3 additions and 0 deletions

View File

@ -54,6 +54,7 @@ RETURNS SETOF catalog_grid_result AS $$
AND attachments.attachment_idx = 1
, query
WHERE p.body_search_index @@ query.query
LIMIT 2000
)
SELECT
0 AS estimated_post_count,

View File

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