mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
14 lines
226 B
Go
14 lines
226 B
Go
|
// +build integration
|
||
|
|
||
|
package test
|
||
|
|
||
|
import "github.com/golang/snappy"
|
||
|
|
||
|
func Compress(wr WriteRequest) ([]byte, error) {
|
||
|
data, err := wr.Marshal()
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return snappy.Encode(nil, data), nil
|
||
|
}
|