Skip to content

feat: reduce memory allocations on msgpack serialization

Denis Smirnov requested to merge msgpack_alloc into main

Current msgpack serialization improvement:

  • reduces the amount of memory copy operations while building temporary tables
  • simplifies non-SQL insert from the virtual table into the space (we can avoid mutable methods while working with a virtual table but rather use references and non-mutable methods)

Merge request reports