mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
pgindent run for 9.4
This includes removing tabs after periods in C comments, which was applied to back branches, so this change should not effect backpatching.
This commit is contained in:
@ -208,7 +208,8 @@ page_header(PG_FUNCTION_ARGS)
|
||||
/* pageinspect >= 1.2 uses pg_lsn instead of text for the LSN field. */
|
||||
if (tupdesc->attrs[0]->atttypid == TEXTOID)
|
||||
{
|
||||
char lsnchar[64];
|
||||
char lsnchar[64];
|
||||
|
||||
snprintf(lsnchar, sizeof(lsnchar), "%X/%X",
|
||||
(uint32) (lsn >> 32), (uint32) lsn);
|
||||
values[0] = CStringGetTextDatum(lsnchar);
|
||||
|
Reference in New Issue
Block a user