MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / decode_sync

Function decode_sync

src/pgwire/src/codec.rs:906–909  ·  view source on GitHub ↗
(mut _buf: Cursor)

Source from the content-addressed store, hash-verified

904}
905
906fn decode_sync(mut _buf: Cursor) -> Result<FrontendMessage, io::Error> {
907 // Nothing more to decode.
908 Ok(FrontendMessage::Sync)
909}
910
911fn decode_copy_data(mut buf: Cursor, frame_len: usize) -> Result<FrontendMessage, io::Error> {
912 let mut data = Vec::with_capacity(frame_len);

Callers 1

decodeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected