Re: Set appropriate processing mode for auxiliary processes.

2024-05-09 Thread Xing Guo
On Thu, May 9, 2024 at 11:19 PM Tom Lane wrote: > > Heikki Linnakangas writes: > > At first I was sure this was introduced by my refactorings in v17, but > > in fact it's been like this forever. I agree that InitProcessing makes > > much more sense. The ProcessingMode variable is initialized to

Re: Set appropriate processing mode for auxiliary processes.

2024-05-09 Thread Tom Lane
Heikki Linnakangas writes: > At first I was sure this was introduced by my refactorings in v17, but > in fact it's been like this forever. I agree that InitProcessing makes > much more sense. The ProcessingMode variable is initialized to > InitProcessing, so I think we can simply remove that

Re: Set appropriate processing mode for auxiliary processes.

2024-05-09 Thread Xing Guo
Sorry, forget to add an assertion to guard our codes in my previous patch. From 4f2d70fb27e3ff23b8572c5e679c791daa1f6665 Mon Sep 17 00:00:00 2001 From: Xing Guo Date: Thu, 9 May 2024 20:57:48 +0800 Subject: [PATCH v3] Remove redundant SetProcessingMode(InitProcessing) calls. After several

Re: Set appropriate processing mode for auxiliary processes.

2024-05-09 Thread Xing Guo
On Thu, May 9, 2024 at 10:13 PM Heikki Linnakangas wrote: > > On 09/05/2024 16:12, Xing Guo wrote: > > Hi hackers, > > > > After several refactoring iterations, auxiliary processes are no > > longer initialized from the bootstrapper. I think using the > > InitProcessing mode for initializing

Re: Set appropriate processing mode for auxiliary processes.

2024-05-09 Thread Heikki Linnakangas
On 09/05/2024 16:12, Xing Guo wrote: Hi hackers, After several refactoring iterations, auxiliary processes are no longer initialized from the bootstrapper. I think using the InitProcessing mode for initializing auxiliary processes is more appropriate. At first I was sure this was introduced

Set appropriate processing mode for auxiliary processes.

2024-05-09 Thread Xing Guo
:00 2001 From: Xing Guo Date: Thu, 9 May 2024 20:57:48 +0800 Subject: [PATCH v1] Set appropriate processing mode for auxiliary processes. After several refactoring iterations, auxiliary processes are no longer initialized from the bootstrapper. Using the InitProcessing mode for initializing