From cece49f02717b733460c7111b1d79feeccec66e8 Mon Sep 17 00:00:00 2001 From: Rajiv Kushwaha Date: Thu, 10 Jun 2021 00:24:52 +0530 Subject: [PATCH] Reformat build tag This fixes the failing test because of compilation error: compress/lz4.go:1: +build comment must appear before package clause and be followed by a blank line --- compress/lz4.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/compress/lz4.go b/compress/lz4.go index 38e88e8d..06c0fcaf 100644 --- a/compress/lz4.go +++ b/compress/lz4.go @@ -1,14 +1,15 @@ // +build !no_lz4 + package compress import ( "bytes" - "github.com/pierrec/lz4/v4" - "github.com/xitongsys/parquet-go/parquet" "io/ioutil" "sync" -) + "github.com/pierrec/lz4/v4" + "github.com/xitongsys/parquet-go/parquet" +) func init() { lz4WriterPool := sync.Pool{