Lines Matching refs:attrelation

2581 	Relation	attrelation;  in renameatt_internal()  local
2662 attrelation = heap_open(AttributeRelationId, RowExclusiveLock); in renameatt_internal()
2700 CatalogTupleUpdate(attrelation, &atttup->t_self, atttup); in renameatt_internal()
2706 heap_close(attrelation, RowExclusiveLock); in renameatt_internal()
5955 Relation attrelation; in ATExecAddIdentity() local
5962 attrelation = heap_open(AttributeRelationId, RowExclusiveLock); in ATExecAddIdentity()
6004 CatalogTupleUpdate(attrelation, &tuple->t_self, tuple); in ATExecAddIdentity()
6013 heap_close(attrelation, RowExclusiveLock); in ATExecAddIdentity()
6031 Relation attrelation; in ATExecSetIdentity() local
6057 attrelation = heap_open(AttributeRelationId, RowExclusiveLock); in ATExecSetIdentity()
6083 CatalogTupleUpdate(attrelation, &tuple->t_self, tuple); in ATExecSetIdentity()
6095 heap_close(attrelation, RowExclusiveLock); in ATExecSetIdentity()
6111 Relation attrelation; in ATExecDropIdentity() local
6116 attrelation = heap_open(AttributeRelationId, RowExclusiveLock); in ATExecDropIdentity()
6146 heap_close(attrelation, RowExclusiveLock); in ATExecDropIdentity()
6152 CatalogTupleUpdate(attrelation, &tuple->t_self, tuple); in ATExecDropIdentity()
6161 heap_close(attrelation, RowExclusiveLock); in ATExecDropIdentity()
6211 Relation attrelation; in ATExecSetStatistics() local
6239 attrelation = heap_open(AttributeRelationId, RowExclusiveLock); in ATExecSetStatistics()
6259 CatalogTupleUpdate(attrelation, &tuple->t_self, tuple); in ATExecSetStatistics()
6268 heap_close(attrelation, RowExclusiveLock); in ATExecSetStatistics()
6280 Relation attrelation; in ATExecSetOptions() local
6293 attrelation = heap_open(AttributeRelationId, RowExclusiveLock); in ATExecSetOptions()
6328 newtuple = heap_modify_tuple(tuple, RelationGetDescr(attrelation), in ATExecSetOptions()
6332 CatalogTupleUpdate(attrelation, &newtuple->t_self, newtuple); in ATExecSetOptions()
6344 heap_close(attrelation, RowExclusiveLock); in ATExecSetOptions()
6359 Relation attrelation; in ATExecSetStorage() local
6385 attrelation = heap_open(AttributeRelationId, RowExclusiveLock); in ATExecSetStorage()
6415 CatalogTupleUpdate(attrelation, &tuple->t_self, tuple); in ATExecSetStorage()
6423 heap_close(attrelation, RowExclusiveLock); in ATExecSetStorage()
9008 Relation attrelation; in ATExecAlterColumnType() local
9015 attrelation = heap_open(AttributeRelationId, RowExclusiveLock); in ATExecAlterColumnType()
9320 CatalogTupleUpdate(attrelation, &heapTup->t_self, heapTup); in ATExecAlterColumnType()
9322 heap_close(attrelation, RowExclusiveLock); in ATExecAlterColumnType()