mirror of
https://github.com/postgres/postgres.git
synced 2025-07-26 01:22:12 +03:00
Remove tabs after spaces in C comments
This was not changed in HEAD, but will be done later as part of a pgindent run. Future pgindent runs will also do this. Report by Tom Lane Backpatch through all supported branches, but not HEAD
This commit is contained in:
@ -256,7 +256,7 @@ AtEOSubXact_SPI(bool isCommit, SubTransactionId mySubid)
|
||||
}
|
||||
|
||||
/*
|
||||
* Pop the stack entry and reset global variables. Unlike
|
||||
* Pop the stack entry and reset global variables. Unlike
|
||||
* SPI_finish(), we don't risk switching to memory contexts that might
|
||||
* be already gone.
|
||||
*/
|
||||
@ -1300,7 +1300,7 @@ SPI_cursor_open_internal(const char *name, SPIPlanPtr plan,
|
||||
}
|
||||
|
||||
/*
|
||||
* Disallow SCROLL with SELECT FOR UPDATE. This is not redundant with the
|
||||
* Disallow SCROLL with SELECT FOR UPDATE. This is not redundant with the
|
||||
* check in transformDeclareCursorStmt because the cursor options might
|
||||
* not have come through there.
|
||||
*/
|
||||
@ -1554,7 +1554,7 @@ SPI_plan_is_valid(SPIPlanPtr plan)
|
||||
/*
|
||||
* SPI_result_code_string --- convert any SPI return code to a string
|
||||
*
|
||||
* This is often useful in error messages. Most callers will probably
|
||||
* This is often useful in error messages. Most callers will probably
|
||||
* only pass negative (error-case) codes, but for generality we recognize
|
||||
* the success codes too.
|
||||
*/
|
||||
@ -1624,7 +1624,7 @@ SPI_result_code_string(int code)
|
||||
* CachedPlanSources.
|
||||
*
|
||||
* This is exported so that pl/pgsql can use it (this beats letting pl/pgsql
|
||||
* look directly into the SPIPlan for itself). It's not documented in
|
||||
* look directly into the SPIPlan for itself). It's not documented in
|
||||
* spi.sgml because we'd just as soon not have too many places using this.
|
||||
*/
|
||||
List *
|
||||
@ -1640,7 +1640,7 @@ SPI_plan_get_plan_sources(SPIPlanPtr plan)
|
||||
* return NULL. Caller is responsible for doing ReleaseCachedPlan().
|
||||
*
|
||||
* This is exported so that pl/pgsql can use it (this beats letting pl/pgsql
|
||||
* look directly into the SPIPlan for itself). It's not documented in
|
||||
* look directly into the SPIPlan for itself). It's not documented in
|
||||
* spi.sgml because we'd just as soon not have too many places using this.
|
||||
*/
|
||||
CachedPlan *
|
||||
@ -2198,7 +2198,7 @@ _SPI_execute_plan(SPIPlanPtr plan, ParamListInfo paramLI,
|
||||
|
||||
/*
|
||||
* The last canSetTag query sets the status values returned to the
|
||||
* caller. Be careful to free any tuptables not returned, to
|
||||
* caller. Be careful to free any tuptables not returned, to
|
||||
* avoid intratransaction memory leak.
|
||||
*/
|
||||
if (canSetTag)
|
||||
|
Reference in New Issue
Block a user