We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4addea commit ffef68dCopy full SHA for ffef68d
database/migrations/functions/jobboard/search_jobs.sql
@@ -166,10 +166,7 @@ begin
166
where project_id = any(
167
select project_id
168
from project p
169
- join json_table((p_filters->'projects'), '$[*]' columns (
170
- foundation text path '$.foundation',
171
- name text path '$.name'
172
- )) fp
+ join jsonb_to_recordset(p_filters->'projects') as fp(foundation text, name text)
173
on p.foundation = fp.foundation and p.name = fp.name
174
)
175
0 commit comments