1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-25 21:42:33 +03:00

Add missing const qualifier

Missed in commit 785480c9533d9.

Pointed out by Tom Lane.

Discussion: https://postgr.es/m/2795364.1689221300%40sss.pgh.pa.us
This commit is contained in:
Amit Langote 2023-07-13 22:34:52 +09:00
parent 328f492d25
commit 40b3af72a7

View File

@ -3207,7 +3207,7 @@ makeJsonByteaToTextConversion(Node *expr, JsonFormat *format, int location)
* default format otherwise.
*/
static Node *
transformJsonValueExpr(ParseState *pstate, char *constructName,
transformJsonValueExpr(ParseState *pstate, const char *constructName,
JsonValueExpr *ve, JsonFormatType default_format)
{
Node *expr = transformExprRecurse(pstate, (Node *) ve->raw_expr);