diff options
author | Tomas Vondra <tomas.vondra@postgresql.org> | 2020-11-11 18:37:36 +0100 |
---|---|---|
committer | Tomas Vondra <tomas.vondra@postgresql.org> | 2020-11-11 18:54:54 +0100 |
commit | c4424d33cca9719ae925d0cc018acf32182a6d95 (patch) | |
tree | 8476c2c2c9a47c6dd1b38b5a59064e81768c8af6 /src | |
parent | 3a89ea0eb64a1b50b27de1965fdb2173a04d5e11 (diff) | |
download | postgresql-c4424d33cca9719ae925d0cc018acf32182a6d95.tar.gz postgresql-c4424d33cca9719ae925d0cc018acf32182a6d95.zip |
Remove duplicate code in brin_memtuple_initialize
Commit 8bf74967dab moved some of the code from brin_new_memtuple to
brin_memtuple_initialize, but this resulted in some of the code being
duplicate. Fix by removing the duplicate lines and backpatch to 10.
Author: Tomas Vondra
Backpatch-through: 10
Discussion: https://postgr.es/m/5eb50c97-9a8e-b691-8c40-1b2a55611c4c%40enterprisedb.com
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/brin/brin_tuple.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/backend/access/brin/brin_tuple.c b/src/backend/access/brin/brin_tuple.c index 126a07e5060..104bdf4f2ef 100644 --- a/src/backend/access/brin/brin_tuple.c +++ b/src/backend/access/brin/brin_tuple.c @@ -482,9 +482,6 @@ brin_memtuple_initialize(BrinMemTuple *dtuple, BrinDesc *brdesc) sizeof(BrinValues) * brdesc->bd_tupdesc->natts); for (i = 0; i < brdesc->bd_tupdesc->natts; i++) { - dtuple->bt_columns[i].bv_allnulls = true; - dtuple->bt_columns[i].bv_hasnulls = false; - dtuple->bt_columns[i].bv_attno = i + 1; dtuple->bt_columns[i].bv_allnulls = true; dtuple->bt_columns[i].bv_hasnulls = false; |