File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change 11/*-------------------------------------------------------------------------
22 *
33 * jsquery.h
4- * Definitions of jsquery datatype
4+ * Definitions of jsquery datatype
55 *
66 * Copyright (c) 2014, PostgreSQL Global Development Group
77 * Author: Teodor Sigaev <teodor@sigaev.ru>
88 *
99 * IDENTIFICATION
10- * contrib/jsquery/jsquery.h
10+ * contrib/jsquery/jsquery.h
1111 *
1212 *-------------------------------------------------------------------------
1313 */
@@ -130,7 +130,7 @@ typedef struct JsQueryParseItem JsQueryParseItem;
130130
131131struct JsQueryParseItem {
132132 JsQueryItemType type ;
133- JsQueryHint hint ;
133+ JsQueryHint hint ;
134134 JsQueryParseItem * next ; /* next in path */
135135
136136 union {
@@ -145,8 +145,8 @@ struct JsQueryParseItem {
145145 Numeric numeric ;
146146 bool boolean ;
147147 struct {
148- uint32 len ;
149- char * val ; /* could not be not null-terminated */
148+ uint32 len ;
149+ char * val ; /* could not be not null-terminated */
150150 } string ;
151151
152152 struct {
@@ -162,10 +162,10 @@ extern JsQueryParseItem* parsejsquery(const char *str, int len);
162162
163163typedef enum
164164{
165- iAny = jqiAny ,
166- iAnyArray = jqiAnyArray ,
167- iKey = jqiKey ,
168- iAnyKey = jqiAnyKey
165+ iAny = jqiAny ,
166+ iAnyArray = jqiAnyArray ,
167+ iKey = jqiKey ,
168+ iAnyKey = jqiAnyKey
169169} PathItemType ;
170170
171171typedef struct PathItem PathItem ;
@@ -201,7 +201,7 @@ typedef struct ExtractedNode ExtractedNode;
201201struct ExtractedNode
202202{
203203 ExtractedNodeType type ;
204- JsQueryHint hint ;
204+ JsQueryHint hint ;
205205 PathItem * path ;
206206 bool indirect ;
207207 SelectivityClass sClass ;
You can’t perform that action at this time.
0 commit comments