decodeExecuteBuffer method

TypedColumnarResult? decodeExecuteBuffer(
  1. Uint8List? buf, {
  2. bool lazyStrings = false,
})

Decodes a buffer from a non-stream execute into typed columnar form.

Implementation

TypedColumnarResult? decodeExecuteBuffer(
  Uint8List? buf, {
  bool lazyStrings = false,
}) =>
    _parser.parseBufferToTypedColumnar(buf, lazyStrings: lazyStrings);