Fix obsolete comment. Zdenek Kotala
authorHeikki Linnakangas <[email protected]>
Sat, 7 Feb 2009 10:49:36 +0000 (10:49 +0000)
committerHeikki Linnakangas <[email protected]>
Sat, 7 Feb 2009 10:49:36 +0000 (10:49 +0000)
src/backend/access/transam/xlog.c

index 00f345cecc972341a6e14e2ce95a6edb2dce3efb..bb70fb422c719becc80c1311d14d0c4c9c9e3cca 100644 (file)
@@ -4045,15 +4045,9 @@ ReadControlFile(void)
                                (errmsg("incorrect checksum in control file")));
 
        /*
-        * Do compatibility checking immediately.  We do this here for 2 reasons:
-        *
-        * (1) if the database isn't compatible with the backend executable, we
-        * want to abort before we can possibly do any damage;
-        *
-        * (2) this code is executed in the postmaster, so the setlocale() will
-        * propagate to forked backends, which aren't going to read this file for
-        * themselves.  (These locale settings are considered critical
-        * compatibility items because they can affect sort order of indexes.)
+        * Do compatibility checking immediately.  If the database isn't
+        * compatible with the backend executable, we want to abort before we
+        * can possibly do any damage.
         */
        if (ControlFile->catalog_version_no != CATALOG_VERSION_NO)
                ereport(FATAL,