Re: Proposal to remove message length constant from F/B protocol document

2024-11-07 Thread David G. Johnston
On Fri, Nov 1, 2024 at 4:53 AM Tatsuo Ishii wrote: > I think this may bring a misunderstanding to some implementer of the > protocol. i.e. He may wright a code like this to save the work to > interpret the message length field (this is a backend side code). > > if (message_char == 'Z') > { >

Proposal to remove message length constant from F/B protocol document

2024-11-01 Thread Tatsuo Ishii
Currently we document the message size length as a constant like Int32(5) for some message types in the frontend backend protocol doument[1]. ReadyForQuery (B) Byte1('Z') Identifies the message type. ReadyForQuery is sent whenever the backend is ready for a new query cycle. Int3