Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
Signed-off-by: sunby <[email protected]>
  • Loading branch information
sunby committed Jan 9, 2024
1 parent 3eb464e commit 4235dc7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
3 changes: 2 additions & 1 deletion cpp/.clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ Checks: >
performance-trivially-destructible, performance-inefficient-vector-operation,
performance-move-const-arg, performance-move-constructor-init,
performance-noexcept-move-constructor, performance-no-automatic-move,
performance-type-promotion-in-math-fn
performance-type-promotion-in-math-fn, performance-unnecessary-copy-initialization,
performance-unnecessary-value-param
# produce HeaderFilterRegex from core/build-support/lint_exclusions.txt with:
# echo -n '^?!('; sed -e 's/*/\.*/g' core/build-support/lint_exclusions.txt | tr '\n' '|'; echo ')$'
Expand Down
9 changes: 4 additions & 5 deletions cpp/include/milvus-storage/common/arrow_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@ namespace milvus_storage {
Result<std::unique_ptr<parquet::arrow::FileReader>> MakeArrowFileReader(arrow::fs::FileSystem& fs,
const std::string& file_path);

Result<std::unique_ptr<arrow::RecordBatchReader>> MakeArrowRecordBatchReader(
parquet::arrow::FileReader& reader,
std::shared_ptr<arrow::Schema> schema,
const SchemaOptions& schema_options,
const ReadOptions& options = {});
Result<std::unique_ptr<arrow::RecordBatchReader>> MakeArrowRecordBatchReader(parquet::arrow::FileReader& reader,
std::shared_ptr<arrow::Schema> schema,
const SchemaOptions& schema_options,
const ReadOptions& options = {});
} // namespace milvus_storage

0 comments on commit 4235dc7

Please sign in to comment.