Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 40b3af7

Browse files
committed
Add missing const qualifier
Missed in commit 785480c. Pointed out by Tom Lane. Discussion: https://postgr.es/m/2795364.1689221300%40sss.pgh.pa.us
1 parent 328f492 commit 40b3af7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/parser/parse_expr.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -3207,7 +3207,7 @@ makeJsonByteaToTextConversion(Node *expr, JsonFormat *format, int location)
32073207
* default format otherwise.
32083208
*/
32093209
static Node *
3210-
transformJsonValueExpr(ParseState *pstate, char *constructName,
3210+
transformJsonValueExpr(ParseState *pstate, const char *constructName,
32113211
JsonValueExpr *ve, JsonFormatType default_format)
32123212
{
32133213
Node *expr = transformExprRecurse(pstate, (Node *) ve->raw_expr);

0 commit comments

Comments
 (0)