Skip to content

Commit

Permalink
fix(fct_getprocess): Add missed alias for subquery
Browse files Browse the repository at this point in the history
  • Loading branch information
xtorret committed Aug 28, 2024
1 parent 86004f1 commit 72505db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/fct/gw_fct_getprocess.sql
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ BEGIN
UNION SELECT 'v_edit_inp_subcatchment', 'SUBCATCHMENT', 6, true as active
UNION SELECT 'v_edit_raingage', 'RAINGAGE', 8, true as active ) t
WHERE type = UPPER(replace(v_value_element, '"', '')) AND active IS TRUE
ORDER BY c, tablename) into v_response_array;
ORDER BY c, tablename) a into v_response_array;
v_value_json = gw_fct_json_object_set_key(v_value_json, replace(v_value_element, '"', ''), v_response_array);
end loop;
v_fields_aux = gw_fct_json_object_set_key(((v_fields->>'functionparams')::json), 'featureType', v_value_json);
Expand Down

0 comments on commit 72505db

Please sign in to comment.