Refactor s3select to support parquet. (#7023)

Also handle pretty formatted JSON documents.
This commit is contained in:
Bala FA
2019-01-09 06:23:04 +05:30
committed by kannappanr
parent e98d89274f
commit b0deea27df
124 changed files with 27376 additions and 4152 deletions
+10
View File
@@ -0,0 +1,10 @@
// +build gofuzz
package lzo
import "bytes"
func Fuzz(data []byte) int {
Decompress1X(bytes.NewBuffer(data), 0, 0)
return 0
}