mirror of
https://github.com/postgres/postgres.git
synced 2025-08-19 23:22:23 +03:00
pgindent run for 9.5
This commit is contained in:
@@ -1196,9 +1196,9 @@ typedef struct CurrentOfExpr
|
||||
typedef struct InferenceElem
|
||||
{
|
||||
Expr xpr;
|
||||
Node *expr; /* expression to infer from, or NULL */
|
||||
Oid infercollid; /* OID of collation, or InvalidOid */
|
||||
Oid inferopclass; /* OID of att opclass, or InvalidOid */
|
||||
Node *expr; /* expression to infer from, or NULL */
|
||||
Oid infercollid; /* OID of collation, or InvalidOid */
|
||||
Oid inferopclass; /* OID of att opclass, or InvalidOid */
|
||||
} InferenceElem;
|
||||
|
||||
/*--------------------
|
||||
@@ -1380,13 +1380,14 @@ typedef struct OnConflictExpr
|
||||
OnConflictAction action; /* DO NOTHING or UPDATE? */
|
||||
|
||||
/* Arbiter */
|
||||
List *arbiterElems; /* unique index arbiter list (of InferenceElem's) */
|
||||
List *arbiterElems; /* unique index arbiter list (of
|
||||
* InferenceElem's) */
|
||||
Node *arbiterWhere; /* unique index arbiter WHERE clause */
|
||||
Oid constraint; /* pg_constraint OID for arbiter */
|
||||
|
||||
/* ON CONFLICT UPDATE */
|
||||
List *onConflictSet; /* List of ON CONFLICT SET TargetEntrys */
|
||||
Node *onConflictWhere;/* qualifiers to restrict UPDATE to */
|
||||
Node *onConflictWhere; /* qualifiers to restrict UPDATE to */
|
||||
int exclRelIndex; /* RT index of 'excluded' relation */
|
||||
List *exclRelTlist; /* tlist of the EXCLUDED pseudo relation */
|
||||
} OnConflictExpr;
|
||||
|
Reference in New Issue
Block a user