diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2017-06-13 13:05:59 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2017-06-13 13:05:59 -0400 |
commit | 651902deb1551db8b401fdeab9bdb8a61cee7f9f (patch) | |
tree | c06f24749e9421a403a425f9037a20911680ca3a /src/backend/access | |
parent | 096f1ccd5290286b135822bb282fa884454d4b69 (diff) | |
download | postgresql-651902deb1551db8b401fdeab9bdb8a61cee7f9f.tar.gz postgresql-651902deb1551db8b401fdeab9bdb8a61cee7f9f.zip |
Re-run pgindent.
This is just to have a clean base state for testing of Piotr Stefaniak's
latest version of FreeBSD indent. I fixed up a couple of places where
pgindent would have changed format not-nicely. perltidy not included.
Discussion: https://postgr.es/m/VI1PR03MB119959F4B65F000CA7CD9F6BF2CC0@VI1PR03MB1199.eurprd03.prod.outlook.com
Diffstat (limited to 'src/backend/access')
-rw-r--r-- | src/backend/access/brin/brin_pageops.c | 2 | ||||
-rw-r--r-- | src/backend/access/brin/brin_validate.c | 4 | ||||
-rw-r--r-- | src/backend/access/gin/ginvalidate.c | 4 | ||||
-rw-r--r-- | src/backend/access/gist/gistvalidate.c | 4 |
4 files changed, 7 insertions, 7 deletions
diff --git a/src/backend/access/brin/brin_pageops.c b/src/backend/access/brin/brin_pageops.c index 27e04cd34ba..3609c8ae7ca 100644 --- a/src/backend/access/brin/brin_pageops.c +++ b/src/backend/access/brin/brin_pageops.c @@ -356,7 +356,7 @@ brin_doinsert(Relation idxrel, BlockNumber pagesPerRange, ereport(ERROR, (errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED), errmsg("index row size %zu exceeds maximum %zu for index \"%s\"", - itemsz, BrinMaxItemSize, RelationGetRelationName(idxrel)))); + itemsz, BrinMaxItemSize, RelationGetRelationName(idxrel)))); return InvalidOffsetNumber; /* keep compiler quiet */ } diff --git a/src/backend/access/brin/brin_validate.c b/src/backend/access/brin/brin_validate.c index 97044e61bb1..b4acf2b6f36 100644 --- a/src/backend/access/brin/brin_validate.c +++ b/src/backend/access/brin/brin_validate.c @@ -265,8 +265,8 @@ brinvalidate(Oid opclassoid) continue; /* got it */ ereport(INFO, (errcode(ERRCODE_INVALID_OBJECT_DEFINITION), - errmsg("operator class \"%s\" of access method %s is missing support function %d", - opclassname, "brin", i))); + errmsg("operator class \"%s\" of access method %s is missing support function %d", + opclassname, "brin", i))); result = false; } diff --git a/src/backend/access/gin/ginvalidate.c b/src/backend/access/gin/ginvalidate.c index 9b147857dcb..4c8e5635459 100644 --- a/src/backend/access/gin/ginvalidate.c +++ b/src/backend/access/gin/ginvalidate.c @@ -244,8 +244,8 @@ ginvalidate(Oid opclassoid) continue; /* don't need both, see check below loop */ ereport(INFO, (errcode(ERRCODE_INVALID_OBJECT_DEFINITION), - errmsg("operator class \"%s\" of access method %s is missing support function %d", - opclassname, "gin", i))); + errmsg("operator class \"%s\" of access method %s is missing support function %d", + opclassname, "gin", i))); result = false; } if (!opclassgroup || diff --git a/src/backend/access/gist/gistvalidate.c b/src/backend/access/gist/gistvalidate.c index d7911ed3a19..42254c5f153 100644 --- a/src/backend/access/gist/gistvalidate.c +++ b/src/backend/access/gist/gistvalidate.c @@ -262,8 +262,8 @@ gistvalidate(Oid opclassoid) continue; /* optional methods */ ereport(INFO, (errcode(ERRCODE_INVALID_OBJECT_DEFINITION), - errmsg("operator class \"%s\" of access method %s is missing support function %d", - opclassname, "gist", i))); + errmsg("operator class \"%s\" of access method %s is missing support function %d", + opclassname, "gist", i))); result = false; } |