Remove MsgType type

Started by Peter Eisentraut4 months ago3 messageshackers
Jump to latest
#1Peter Eisentraut
peter_e@gmx.net

Presumably, the C type MsgType was meant to hold the protocol message
type in the pre-version-3 era, but this was never fully developed even
then, and the name is pretty confusing nowadays. It has only one
vestigial use for cancel requests that we can get rid of. Since a
cancel request is indicated by a special protocol version number, we can
use the ProtocolVersion type, which MsgType was based on. (If this is
also found confusing, we could also use uint32 directly.)

Attachments:

0001-Remove-MsgType-type.patchtext/plain; charset=UTF-8; name=0001-Remove-MsgType-type.patchDownload+3-6
#2Chao Li
li.evan.chao@gmail.com
In reply to: Peter Eisentraut (#1)
Re: Remove MsgType type

On Dec 22, 2025, at 16:46, Peter Eisentraut <peter@eisentraut.org> wrote:

Presumably, the C type MsgType was meant to hold the protocol message type in the pre-version-3 era, but this was never fully developed even then, and the name is pretty confusing nowadays. It has only one vestigial use for cancel requests that we can get rid of. Since a cancel request is indicated by a special protocol version number, we can use the ProtocolVersion type, which MsgType was based on. (If this is also found confusing, we could also use uint32 directly.)
<0001-Remove-MsgType-type.patch>

LGTM. I searched over the source tree, MsgType had only a single usage before the patch, so it makes sense to remove it.

Best regards,
--
Chao Li (Evan)
HighGo Software Co., Ltd.
https://www.highgo.com/

#3Peter Eisentraut
peter_e@gmx.net
In reply to: Chao Li (#2)
Re: Remove MsgType type

On 22.12.25 10:06, Chao Li wrote:

On Dec 22, 2025, at 16:46, Peter Eisentraut <peter@eisentraut.org> wrote:

Presumably, the C type MsgType was meant to hold the protocol message type in the pre-version-3 era, but this was never fully developed even then, and the name is pretty confusing nowadays. It has only one vestigial use for cancel requests that we can get rid of. Since a cancel request is indicated by a special protocol version number, we can use the ProtocolVersion type, which MsgType was based on. (If this is also found confusing, we could also use uint32 directly.)
<0001-Remove-MsgType-type.patch>

LGTM. I searched over the source tree, MsgType had only a single usage before the patch, so it makes sense to remove it.

committed, thanks