Commits


Alfonso Subiotto Marqués authored and GitHub committed b0e1f748f5f
GH-38728: [Go] ipc: put lz4 decompression buffers back into sync.Pool (#38729) The lz4 decompressor was not calling Reset on the underlying writer in its Close method. This could cause buffers not to be released back to the pool and defeating the purpose of the sync.Pool in the lz4 package. Additionally, a call to Close was missing in readDictionary. Closes #38728 * Closes: #38728 Authored-by: Alfonso Subiotto Marques <alfonso.subiotto@polarsignals.com> Signed-off-by: Matt Topol <zotthewizard@gmail.com>