Skip to content

Commit

Permalink
Merge pull request #50 from ddxv/search-speedup
Browse files Browse the repository at this point in the history
small changes
  • Loading branch information
ddxv authored Mar 26, 2024
2 parents b5dc138 + aa9beca commit 02062e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/dbcon/sql/query_search_apps.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
WITH apps AS (
SELECT *
FROM
store_apps AS ssa
store_apps
WHERE
textsearchable_index_col @@ to_tsquery(
'simple',
Expand Down
2 changes: 1 addition & 1 deletion backend/dbcon/sql/query_search_devs.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ WITH devs AS (
SELECT sa.* FROM store_apps sa
LEFT JOIN developers d ON sa.developer = d.id
WHERE
textsearchable_index_col @@ to_tsquery(
d.textsearchable_index_col @@ to_tsquery(
'simple',
:searchinput
)
Expand Down

0 comments on commit 02062e1

Please sign in to comment.