diff options
| author | Bruce Momjian <bruce@momjian.us> | 2011-06-09 14:32:50 -0400 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2011-06-09 14:32:50 -0400 |
| commit | 6560407c7db2c7e32926a46f5fb52175ac10d9e5 (patch) | |
| tree | 9641e538893819410634624a8e0cb86a13d857a6 /src/backend/catalog/toasting.c | |
| parent | adf43b2b36ca3d7f988933990051c74a4bd0d6f8 (diff) | |
| download | postgresql-6560407c7db2c7e32926a46f5fb52175ac10d9e5.tar.gz | |
Pgindent run before 9.1 beta2.
Diffstat (limited to 'src/backend/catalog/toasting.c')
| -rw-r--r-- | src/backend/catalog/toasting.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/backend/catalog/toasting.c b/src/backend/catalog/toasting.c index a8cf0dbe2f..b059f9d784 100644 --- a/src/backend/catalog/toasting.c +++ b/src/backend/catalog/toasting.c @@ -60,8 +60,8 @@ AlterTableCreateToastTable(Oid relOid, Datum reloptions) /* * Grab a DDL-exclusive lock on the target table, since we'll update the - * pg_class tuple. This is redundant for all present users. Tuple toasting - * behaves safely in the face of a concurrent TOAST table add. + * pg_class tuple. This is redundant for all present users. Tuple + * toasting behaves safely in the face of a concurrent TOAST table add. */ rel = heap_open(relOid, ShareUpdateExclusiveLock); @@ -274,13 +274,13 @@ create_toast_table(Relation rel, Oid toastOid, Oid toastIndexOid, Datum reloptio coloptions[1] = 0; index_create(toast_rel, toast_idxname, toastIndexOid, - indexInfo, - list_make2("chunk_id", "chunk_seq"), - BTREE_AM_OID, - rel->rd_rel->reltablespace, - collationObjectId, classObjectId, coloptions, (Datum) 0, - true, false, false, false, - true, false, false); + indexInfo, + list_make2("chunk_id", "chunk_seq"), + BTREE_AM_OID, + rel->rd_rel->reltablespace, + collationObjectId, classObjectId, coloptions, (Datum) 0, + true, false, false, false, + true, false, false); heap_close(toast_rel, NoLock); |
