mirror of
https://github.com/postgres/postgres.git
synced 2025-12-21 05:21:08 +03:00
Phase 2 pgindent run for v12.
Switch to 2.1 version of pg_bsd_indent. This formats multiline function declarations "correctly", that is with additional lines of parameter declarations indented to match where the first line's left parenthesis is. Discussion: https://postgr.es/m/CAEepm=0P3FeTXRcU5B2W3jv3PgRVZ-kGUXLGfd42FFhUROO3ug@mail.gmail.com
This commit is contained in:
@@ -23,7 +23,7 @@
|
||||
|
||||
|
||||
extern ObjectAddress DefineRelation(CreateStmt *stmt, char relkind, Oid ownerId,
|
||||
ObjectAddress *typaddress, const char *queryString);
|
||||
ObjectAddress *typaddress, const char *queryString);
|
||||
|
||||
extern void RemoveRelations(DropStmt *drop);
|
||||
|
||||
@@ -40,21 +40,21 @@ extern void AlterTableInternal(Oid relid, List *cmds, bool recurse);
|
||||
extern Oid AlterTableMoveAll(AlterTableMoveAllStmt *stmt);
|
||||
|
||||
extern ObjectAddress AlterTableNamespace(AlterObjectSchemaStmt *stmt,
|
||||
Oid *oldschema);
|
||||
Oid *oldschema);
|
||||
|
||||
extern void AlterTableNamespaceInternal(Relation rel, Oid oldNspOid,
|
||||
Oid nspOid, ObjectAddresses *objsMoved);
|
||||
Oid nspOid, ObjectAddresses *objsMoved);
|
||||
|
||||
extern void AlterRelationNamespaceInternal(Relation classRel, Oid relOid,
|
||||
Oid oldNspOid, Oid newNspOid,
|
||||
bool hasDependEntry,
|
||||
ObjectAddresses *objsMoved);
|
||||
Oid oldNspOid, Oid newNspOid,
|
||||
bool hasDependEntry,
|
||||
ObjectAddresses *objsMoved);
|
||||
|
||||
extern void CheckTableNotInUse(Relation rel, const char *stmt);
|
||||
|
||||
extern void ExecuteTruncate(TruncateStmt *stmt);
|
||||
extern void ExecuteTruncateGuts(List *explicit_rels, List *relids, List *relids_logged,
|
||||
DropBehavior behavior, bool restart_seqs);
|
||||
DropBehavior behavior, bool restart_seqs);
|
||||
|
||||
extern void SetRelationHasSubclass(Oid relationId, bool relhassubclass);
|
||||
|
||||
@@ -67,12 +67,12 @@ extern ObjectAddress RenameConstraint(RenameStmt *stmt);
|
||||
extern ObjectAddress RenameRelation(RenameStmt *stmt);
|
||||
|
||||
extern void RenameRelationInternal(Oid myrelid,
|
||||
const char *newrelname, bool is_internal,
|
||||
bool is_index);
|
||||
const char *newrelname, bool is_internal,
|
||||
bool is_index);
|
||||
|
||||
extern void find_composite_type_dependencies(Oid typeOid,
|
||||
Relation origRelation,
|
||||
const char *origTypeName);
|
||||
Relation origRelation,
|
||||
const char *origTypeName);
|
||||
|
||||
extern void check_of_type(HeapTuple typetuple);
|
||||
|
||||
@@ -82,15 +82,15 @@ extern void remove_on_commit_action(Oid relid);
|
||||
extern void PreCommit_on_commit_actions(void);
|
||||
extern void AtEOXact_on_commit_actions(bool isCommit);
|
||||
extern void AtEOSubXact_on_commit_actions(bool isCommit,
|
||||
SubTransactionId mySubid,
|
||||
SubTransactionId parentSubid);
|
||||
SubTransactionId mySubid,
|
||||
SubTransactionId parentSubid);
|
||||
|
||||
extern void RangeVarCallbackOwnsTable(const RangeVar *relation,
|
||||
Oid relId, Oid oldRelId, void *arg);
|
||||
Oid relId, Oid oldRelId, void *arg);
|
||||
|
||||
extern void RangeVarCallbackOwnsRelation(const RangeVar *relation,
|
||||
Oid relId, Oid oldRelId, void *noCatalogs);
|
||||
Oid relId, Oid oldRelId, void *noCatalogs);
|
||||
extern bool PartConstraintImpliedByRelConstraint(Relation scanrel,
|
||||
List *partConstraint);
|
||||
List *partConstraint);
|
||||
|
||||
#endif /* TABLECMDS_H */
|
||||
|
||||
Reference in New Issue
Block a user