diff options
| author | David Rowley | 2024-12-20 10:22:37 +0000 |
|---|---|---|
| committer | David Rowley | 2024-12-20 10:22:37 +0000 |
| commit | 02a8d0c45253eb54e57b1974c8627e5be3e1d852 (patch) | |
| tree | b87019e24e20f27319f9e5f8a065af0f15b603b5 /src/backend/bootstrap | |
| parent | 546371599e767340599cdff3e276728016e560cc (diff) | |
Remove pg_attribute.attcacheoff column
The column is no longer needed as the offset is now cached in the
CompactAttribute struct per commit 5983a4cff.
Author: David Rowley
Reviewed-by: Andres Freund, Victor Yegorov
Discussion: https://postgr.es/m/CAApHDvrBztXP3yx=NKNmo3xwFAFhEdyPnvrDg3=M0RhDs+4vYw@mail.gmail.com
Diffstat (limited to 'src/backend/bootstrap')
| -rw-r--r-- | src/backend/bootstrap/bootstrap.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index d35ccab4873..e0cb70ee9da 100644 --- a/src/backend/bootstrap/bootstrap.c +++ b/src/backend/bootstrap/bootstrap.c @@ -580,7 +580,6 @@ DefineAttr(char *name, char *type, int attnum, int nullness) if (OidIsValid(attrtypes[attnum]->attcollation)) attrtypes[attnum]->attcollation = C_COLLATION_OID; - attrtypes[attnum]->attcacheoff = -1; attrtypes[attnum]->atttypmod = -1; attrtypes[attnum]->attislocal = true; |
