-
- Downloads
Process variadic arguments consistently in json functions
json_build_object and json_build_array and the jsonb equivalents did not correctly process explicit VARIADIC arguments. They are modified to use the new extract_variadic_args() utility function which abstracts away the details of the call method. Michael Paquier, reviewed by Tom Lane and Dmitry Dolgov. Backpatch to 9.5 for the jsonb fixes and 9.4 for the json fixes, as that's where they originated.
Showing
- src/backend/utils/adt/json.c 24 additions, 60 deletionssrc/backend/utils/adt/json.c
- src/backend/utils/adt/jsonb.c 28 additions, 71 deletionssrc/backend/utils/adt/jsonb.c
- src/test/regress/expected/json.out 107 additions, 0 deletionssrc/test/regress/expected/json.out
- src/test/regress/expected/jsonb.out 105 additions, 0 deletionssrc/test/regress/expected/jsonb.out
- src/test/regress/sql/json.sql 21 additions, 0 deletionssrc/test/regress/sql/json.sql
- src/test/regress/sql/jsonb.sql 21 additions, 1 deletionsrc/test/regress/sql/jsonb.sql
Loading
Please register or sign in to comment