mirror of
https://github.com/postgres/postgres.git
synced 2025-11-04 20:11:56 +03:00
pgindent run for 9.5
This commit is contained in:
@@ -27,7 +27,7 @@ extern Node *transformWhereClause(ParseState *pstate, Node *clause,
|
||||
extern Node *transformLimitClause(ParseState *pstate, Node *clause,
|
||||
ParseExprKind exprKind, const char *constructName);
|
||||
extern List *transformGroupClause(ParseState *pstate, List *grouplist,
|
||||
List **groupingSets,
|
||||
List **groupingSets,
|
||||
List **targetlist, List *sortClause,
|
||||
ParseExprKind exprKind, bool useSQL99);
|
||||
extern List *transformSortClause(ParseState *pstate, List *orderlist,
|
||||
|
||||
@@ -34,9 +34,9 @@ extern Node *ParseFuncOrColumn(ParseState *pstate, List *funcname, List *fargs,
|
||||
FuncCall *fn, int location);
|
||||
|
||||
extern TableSampleClause *ParseTableSample(ParseState *pstate,
|
||||
char *samplemethod,
|
||||
Node *repeatable, List *args,
|
||||
int location);
|
||||
char *samplemethod,
|
||||
Node *repeatable, List *args,
|
||||
int location);
|
||||
|
||||
extern FuncDetailCode func_get_detail(List *funcname,
|
||||
List *fargs, List *fargnames,
|
||||
|
||||
@@ -26,11 +26,11 @@
|
||||
*/
|
||||
typedef struct
|
||||
{
|
||||
int distance; /* Weighted distance (lowest so far) */
|
||||
RangeTblEntry *rfirst; /* RTE of first */
|
||||
AttrNumber first; /* Closest attribute so far */
|
||||
RangeTblEntry *rsecond; /* RTE of second */
|
||||
AttrNumber second; /* Second closest attribute so far */
|
||||
int distance; /* Weighted distance (lowest so far) */
|
||||
RangeTblEntry *rfirst; /* RTE of first */
|
||||
AttrNumber first; /* Closest attribute so far */
|
||||
RangeTblEntry *rsecond; /* RTE of second */
|
||||
AttrNumber second; /* Second closest attribute so far */
|
||||
} FuzzyAttrMatchState;
|
||||
|
||||
|
||||
@@ -106,7 +106,7 @@ extern void addRTEtoQuery(ParseState *pstate, RangeTblEntry *rte,
|
||||
bool addToRelNameSpace, bool addToVarNameSpace);
|
||||
extern void errorMissingRTE(ParseState *pstate, RangeVar *relation) pg_attribute_noreturn();
|
||||
extern void errorMissingColumn(ParseState *pstate,
|
||||
char *relname, char *colname, int location) pg_attribute_noreturn();
|
||||
char *relname, char *colname, int location) pg_attribute_noreturn();
|
||||
extern void expandRTE(RangeTblEntry *rte, int rtindex, int sublevels_up,
|
||||
int location, bool include_dropped,
|
||||
List **colnames, List **colvars);
|
||||
|
||||
Reference in New Issue
Block a user