mirror of
https://github.com/postgres/postgres.git
synced 2025-08-30 06:01:21 +03:00
pgindent run for 9.0
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $PostgreSQL: pgsql/src/include/parser/parse_node.h,v 1.67 2010/01/02 16:58:07 momjian Exp $
|
||||
* $PostgreSQL: pgsql/src/include/parser/parse_node.h,v 1.68 2010/02/26 02:01:26 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -23,12 +23,12 @@
|
||||
*/
|
||||
typedef struct ParseState ParseState;
|
||||
|
||||
typedef Node * (*PreParseColumnRefHook) (ParseState *pstate, ColumnRef *cref);
|
||||
typedef Node * (*PostParseColumnRefHook) (ParseState *pstate, ColumnRef *cref, Node *var);
|
||||
typedef Node * (*ParseParamRefHook) (ParseState *pstate, ParamRef *pref);
|
||||
typedef Node * (*CoerceParamHook) (ParseState *pstate, Param *param,
|
||||
Oid targetTypeId, int32 targetTypeMod,
|
||||
int location);
|
||||
typedef Node *(*PreParseColumnRefHook) (ParseState *pstate, ColumnRef *cref);
|
||||
typedef Node *(*PostParseColumnRefHook) (ParseState *pstate, ColumnRef *cref, Node *var);
|
||||
typedef Node *(*ParseParamRefHook) (ParseState *pstate, ParamRef *pref);
|
||||
typedef Node *(*CoerceParamHook) (ParseState *pstate, Param *param,
|
||||
Oid targetTypeId, int32 targetTypeMod,
|
||||
int location);
|
||||
|
||||
|
||||
/*
|
||||
@@ -117,7 +117,7 @@ struct ParseState
|
||||
PostParseColumnRefHook p_post_columnref_hook;
|
||||
ParseParamRefHook p_paramref_hook;
|
||||
CoerceParamHook p_coerce_param_hook;
|
||||
void *p_ref_hook_state; /* common passthrough link for above */
|
||||
void *p_ref_hook_state; /* common passthrough link for above */
|
||||
};
|
||||
|
||||
/* Support for parser_errposition_callback function */
|
||||
|
Reference in New Issue
Block a user