Thanks to visit codestin.com Credit goes to github.com
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 87bcc02 commit da24961Copy full SHA for da24961
src/backend/utils/adt/jsonpath_exec.c
@@ -413,7 +413,7 @@ jsonb_path_query(PG_FUNCTION_ARGS)
413
* jsonb array.
414
*/
415
Datum
416
-jsonb_path_query_array(FunctionCallInfo fcinfo)
+jsonb_path_query_array(PG_FUNCTION_ARGS)
417
{
418
Jsonb *jb = PG_GETARG_JSONB_P(0);
419
JsonPath *jp = PG_GETARG_JSONPATH_P(1);
@@ -432,7 +432,7 @@ jsonb_path_query_array(FunctionCallInfo fcinfo)
432
* item. If there are no items, NULL returned.
433
434
435
-jsonb_path_query_first(FunctionCallInfo fcinfo)
+jsonb_path_query_first(PG_FUNCTION_ARGS)
436
437
438
0 commit comments