diff options
author | Alexander Korotkov <akorotkov@postgresql.org> | 2019-05-19 07:45:42 +0300 |
---|---|---|
committer | Alexander Korotkov <akorotkov@postgresql.org> | 2019-05-19 07:45:42 +0300 |
commit | da24961e9e1d887111d17cc2dcece2e3946ca5a6 (patch) | |
tree | 1e94507874b2f160b22a282f35467cbd701187d0 /src/backend/utils/adt/jsonpath_exec.c | |
parent | 87bcc02f4f739d76703feee0ff8346b98fa9b907 (diff) | |
download | postgresql-da24961e9e1d887111d17cc2dcece2e3946ca5a6.tar.gz postgresql-da24961e9e1d887111d17cc2dcece2e3946ca5a6.zip |
Fix declarations of couple jsonpath functions
Make jsonb_path_query_array() and jsonb_path_query_first() use
PG_FUNCTION_ARGS macro instead of its expansion.
Diffstat (limited to 'src/backend/utils/adt/jsonpath_exec.c')
-rw-r--r-- | src/backend/utils/adt/jsonpath_exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/adt/jsonpath_exec.c b/src/backend/utils/adt/jsonpath_exec.c index b6d6a243e52..5d70c7a6a66 100644 --- a/src/backend/utils/adt/jsonpath_exec.c +++ b/src/backend/utils/adt/jsonpath_exec.c @@ -413,7 +413,7 @@ jsonb_path_query(PG_FUNCTION_ARGS) * jsonb array. */ Datum -jsonb_path_query_array(FunctionCallInfo fcinfo) +jsonb_path_query_array(PG_FUNCTION_ARGS) { Jsonb *jb = PG_GETARG_JSONB_P(0); JsonPath *jp = PG_GETARG_JSONPATH_P(1); @@ -432,7 +432,7 @@ jsonb_path_query_array(FunctionCallInfo fcinfo) * item. If there are no items, NULL returned. */ Datum -jsonb_path_query_first(FunctionCallInfo fcinfo) +jsonb_path_query_first(PG_FUNCTION_ARGS) { Jsonb *jb = PG_GETARG_JSONB_P(0); JsonPath *jp = PG_GETARG_JSONPATH_P(1); |