You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Check if the queries are using the trigram indices
searching simple
explain analyze SELECT data FROM "smgpois" WHERE
(data#>>'{Detail,de,Title}' LIKE '%rudi%')
LIMIT 10
with access role
explain analyze SELECT data FROM "smgpois" WHERE
(data#>>'{Detail,de,Title}' LIKE '%rudi%')
AND
(gen_access_role @> array['IDM'])
LIMIT 10
searching trough each language
explain analyze SELECT data FROM "smgpois" WHERE
(data#>>'{Detail,de,Title}' ILIKE '%rudi%' OR
data#>>'{Detail,it,Title}' ILIKE '%rudi%' OR
data#>>'{Detail,en,Title}' ILIKE '%rudi%' OR
data#>>'{Detail,nl,Title}' ILIKE '%rudi%' OR
data#>>'{Detail,cs,Title}' ILIKE '%rudi%' OR
data#>>'{Detail,pl,Title}' ILIKE '%rudi%' OR
data#>>'{Detail,fr,Title}' ILIKE '%rudi%' OR
data#>>'{Detail,pl,Title}' ILIKE '%rudi%')
AND
(gen_access_role @> array['IDM'])
ORDER BY gen_shortname ASC LIMIT 10
with additional ID search
explain analyze SELECT data FROM "smgpois" WHERE
(data#>>'{Detail,de,Title}' ILIKE '%rudi%' OR
data#>>'{Detail,it,Title}' ILIKE '%rudi%' OR
data#>>'{Detail,en,Title}' ILIKE '%rudi%' OR
data#>>'{Detail,nl,Title}' ILIKE '%rudi%' OR
data#>>'{Detail,cs,Title}' ILIKE '%rudi%' OR
data#>>'{Detail,pl,Title}' ILIKE '%rudi%' OR
data#>>'{Detail,fr,Title}' ILIKE '%rudi%' OR
data#>>'{Detail,pl,Title}' ILIKE '%rudi%' OR
data#>>'{Id}' ILIKE '%rudi%') AND
(gen_access_role @> array['IDM']) ORDER BY
gen_shortname ASC LIMIT 10
The text was updated successfully, but these errors were encountered:
Check if the queries are using the trigram indices
searching simple
with access role
searching trough each language
with additional ID search
The text was updated successfully, but these errors were encountered: