Skip to content

Commit

Permalink
[Go]: fix init parquet reader
Browse files Browse the repository at this point in the history
Signed-off-by: sunby <[email protected]>
  • Loading branch information
sunby committed Dec 26, 2023
1 parent 137cb5c commit 304298f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions go/common/arrow_util/arrow_util.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// Copyright 2023 Zilliz
//
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//
// http://www.apache.org/licenses/LICENSE-2.0
//
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Expand All @@ -30,7 +30,7 @@ func MakeArrowFileReader(fs fs.Fs, filePath string) (*pqarrow.FileReader, error)
if err != nil {
return nil, err
}
parquetReader, err := file.NewParquetReader(f, nil)
parquetReader, err := file.NewParquetReader(f)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 304298f

Please sign in to comment.