Skip to content

Commit 89404a0

Browse files
committed
Remove redundant setting of pg_attribute.attcompression
Since e6241d8, no attribute needs a non-default value of this during initdb, so let the usual machinery for defaults take care of it.
1 parent 4dd5ce2 commit 89404a0

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/backend/catalog/genbki.pl

-1
Original file line numberDiff line numberDiff line change
@@ -905,7 +905,6 @@ sub morph_row_for_pgattr
905905
$row->{attbyval} = $type->{typbyval};
906906
$row->{attalign} = $type->{typalign};
907907
$row->{attstorage} = $type->{typstorage};
908-
$row->{attcompression} = '\0';
909908

910909
# set attndims if it's an array type
911910
$row->{attndims} = $type->{typcategory} eq 'A' ? '1' : '0';

0 commit comments

Comments
 (0)