decodeBatchedStreamFrame function

ParsedRowBuffer decodeBatchedStreamFrame(
  1. Uint8List frame, {
  2. bool lazyStrings = false,
})

Decodes one complete batched-stream protocol frame into a ParsedRowBuffer.

Columnar v2 frames are decoded via BinaryProtocolParser.parse (direct columnar→row path). Callers that want to keep typed columns should use BinaryProtocolParser.parseColumnarToTyped / streamQueryColumnar* instead of this helper.

Implementation

ParsedRowBuffer decodeBatchedStreamFrame(
  Uint8List frame, {
  bool lazyStrings = false,
}) {
  return BinaryProtocolParser.parse(frame, lazyStrings: lazyStrings);
}