]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
pg_upgrade: Fix some minor code issues
authorPeter Eisentraut <peter@eisentraut.org>
Fri, 12 Aug 2022 22:00:41 +0000 (00:00 +0200)
committerPeter Eisentraut <peter@eisentraut.org>
Fri, 12 Aug 2022 22:16:31 +0000 (00:16 +0200)
96ef3b8ff1cf1950e897fd2f766d4bd9ef0d5d56 accidentally copied a not
applicable comment from the float8_pass_by_value code to the
data_checksums code.  Remove that.

87d3b35a1ca31a9d947a8f919a6006679216dff0 changed pg_upgrade to
checking the checksum version rather than just the Boolean presence of
checksums, but didn't change the field type in its ControlData struct
from bool.  So this would not work correctly if there ever is a
checksum version larger than 1.

src/bin/pg_upgrade/controldata.c
src/bin/pg_upgrade/pg_upgrade.h

index fcbc28946dbb1db48b176bcee7f6b0f7be478490..97f03a1ae97899656e7cc44b74d7689d9cba77af 100644 (file)
@@ -493,7 +493,6 @@ get_control_data(ClusterInfo *cluster, bool live_check)
                                pg_fatal("%d: controldata retrieval problem\n", __LINE__);
 
                        p++;                            /* remove ':' char */
-                       /* used later for contrib check */
                        cluster->controldata.data_checksum_version = str2uint(p);
                        got_data_checksum_version = true;
                }
index 4eae959a3916207a0e6ed0e0e46c1bf11ffe485e..2d2b4fa1f22786247efb79fe725e18421d899d19 100644 (file)
@@ -227,7 +227,7 @@ typedef struct
        uint32          large_object;
        bool            date_is_int;
        bool            float8_pass_by_value;
-       bool            data_checksum_version;
+       uint32          data_checksum_version;
 } ControlData;
 
 /*