Upgrade compress and pgzip package (#10992)

Should provide faster decompression for s3 select and other places where it is used.
This commit is contained in:
Klaus Post
2020-11-27 10:10:15 -08:00
committed by GitHub
parent e90efd73a2
commit f139a19238
3 changed files with 9 additions and 4 deletions

View File

@@ -10,12 +10,13 @@
package rpc
import (
"compress/flate"
"compress/gzip"
"io"
"net/http"
"strings"
"unicode"
"github.com/klauspost/compress/flate"
"github.com/klauspost/compress/gzip"
)
// gzipWriter writes and closes the gzip writer.