mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
Another pgindent run. Fixes enum indenting, and improves #endif
spacing. Also adds space for one-line comments.
This commit is contained in:
@ -52,7 +52,7 @@ check_primary_key(PG_FUNCTION_ARGS)
|
||||
HeapTuple tuple = NULL; /* tuple to return */
|
||||
TupleDesc tupdesc; /* tuple description */
|
||||
EPlan *plan; /* prepared plan */
|
||||
Oid *argtypes = NULL; /* key types to prepare execution plan */
|
||||
Oid *argtypes = NULL; /* key types to prepare execution plan */
|
||||
bool isnull; /* to know is some column NULL or not */
|
||||
char ident[2 * NAMEDATALEN]; /* to identify myself */
|
||||
int ret;
|
||||
@ -235,10 +235,10 @@ check_foreign_key(PG_FUNCTION_ARGS)
|
||||
char *relname; /* referencing relation name */
|
||||
Relation rel; /* triggered relation */
|
||||
HeapTuple trigtuple = NULL; /* tuple to being changed */
|
||||
HeapTuple newtuple = NULL; /* tuple to return */
|
||||
HeapTuple newtuple = NULL; /* tuple to return */
|
||||
TupleDesc tupdesc; /* tuple description */
|
||||
EPlan *plan; /* prepared plan(s) */
|
||||
Oid *argtypes = NULL; /* key types to prepare execution plan */
|
||||
Oid *argtypes = NULL; /* key types to prepare execution plan */
|
||||
bool isnull; /* to know is some column NULL or not */
|
||||
bool isequal = true; /* are keys in both tuples equal (in
|
||||
* UPDATE) */
|
||||
|
Reference in New Issue
Block a user