After several refactoring iterations, auxiliary processes are no
longer initialized from the bootstrapper. Using the InitProcessing
mode for initializing auxiliary processes is more appropriate. Since
the global variable Mode is initialized to InitProcessing, we can just
remove the redundant calls of SetProcessingMode(InitProcessing).
Author: Xing Guo <higuoxing@gmail.com>
Discussion: https://www.postgresql.org/message-id/CACpMh%2BDBHVT4xPGimzvex%3DwMdMLQEu9PYhT%2BkwwD2x2nu9dU_Q%40mail.gmail.com
        if (PostAuthDelay)
                pg_usleep(PostAuthDelay * 1000000L);
 
-       SetProcessingMode(InitProcessing);
+       Assert(GetProcessingMode() == InitProcessing);
 
        /*
         * Set up signal handlers.  We operate on databases much like a regular
        MyBackendType = B_AUTOVAC_WORKER;
        init_ps_display(NULL);
 
-       SetProcessingMode(InitProcessing);
+       Assert(GetProcessingMode() == InitProcessing);
 
        /*
         * Set up signal handlers.  We operate on databases much like a regular
 
 
        init_ps_display(NULL);
 
-       SetProcessingMode(BootstrapProcessing);
+       Assert(GetProcessingMode() == InitProcessing);
+
        IgnoreSystemIndexes = true;
 
        /*
 
        MyBackendType = B_BG_WORKER;
        init_ps_display(worker->bgw_name);
 
-       SetProcessingMode(InitProcessing);
+       Assert(GetProcessingMode() == InitProcessing);
 
        /* Apply PostAuthDelay */
        if (PostAuthDelay > 0)
 
 
        init_ps_display(NULL);
 
-       SetProcessingMode(InitProcessing);
+       Assert(GetProcessingMode() == InitProcessing);
 
        /*
         * Create a per-backend PGPROC struct in shared memory.  We must do this
 
        Assert(dbname != NULL);
        Assert(username != NULL);
 
-       SetProcessingMode(InitProcessing);
+       Assert(GetProcessingMode() == InitProcessing);
 
        /*
         * Set up signal handlers.  (InitPostmasterChild or InitStandaloneProcess