From 5e28b778bf9a5835e702277119c5f92b4dbab45e Mon Sep 17 00:00:00 2001 From: Alexander Korotkov Date: Tue, 19 Mar 2019 20:56:13 +0300 Subject: Rename typedef in jsonpath_gram.y from "string" to "JsonPathString" Reason is the same as in 75c57058b0. --- src/include/utils/jsonpath_scanner.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/include') diff --git a/src/include/utils/jsonpath_scanner.h b/src/include/utils/jsonpath_scanner.h index bbdd984dab5..1c567717e84 100644 --- a/src/include/utils/jsonpath_scanner.h +++ b/src/include/utils/jsonpath_scanner.h @@ -13,13 +13,13 @@ #ifndef JSONPATH_SCANNER_H #define JSONPATH_SCANNER_H -/* struct string is shared between scan and gram */ -typedef struct string +/* struct JsonPathString is shared between scan and gram */ +typedef struct JsonPathString { char *val; int len; int total; -} string; +} JsonPathString; #include "utils/jsonpath.h" #include "utils/jsonpath_gram.h" -- cgit v1.2.3