From: Tom Lane Date: Fri, 19 May 2017 19:05:54 +0000 (-0400) Subject: Fix misspelled struct tag. X-Git-Tag: XL_10_R1BETA1~288^2~38 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=cf5389f5b57af714d002d532add291f87ddb0062;p=postgres-xl.git Fix misspelled struct tag. This was evidently intended to match the struct's typedef name, but it didn't quite. Noted while testing find_typedefs. --- diff --git a/src/backend/utils/adt/jsonfuncs.c b/src/backend/utils/adt/jsonfuncs.c index 34de934d87..ab9a745234 100644 --- a/src/backend/utils/adt/jsonfuncs.c +++ b/src/backend/utils/adt/jsonfuncs.c @@ -122,7 +122,7 @@ typedef struct ElementsState } ElementsState; /* state for get_json_object_as_hash */ -typedef struct JhashState +typedef struct JHashState { JsonLexContext *lex; const char *function_name;