Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
Signed-off-by: Yuan Zhou <yuan.zhou@intel.com>
  • Loading branch information
zhouyuan committed Aug 31, 2022
1 parent 2964705 commit cb7b4b3
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,10 @@ class CountDistinctAction : public ActionBase {
return arrow::Status::OK();
};

*on_null = [this]() { row_id++; return arrow::Status::OK(); };
*on_null = [this]() {
row_id++;
return arrow::Status::OK();
};
return arrow::Status::OK();
}

Expand Down

0 comments on commit cb7b4b3

Please sign in to comment.