Skip to content

Commit

Permalink
Make anonymous namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
PHILO-HE committed Jun 24, 2024
1 parent 0d4062f commit e500ae4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions velox/functions/sparksql/ConcatWs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
#include "velox/expression/VectorFunction.h"

namespace facebook::velox::functions::sparksql {

namespace {
class ConcatWs : public exec::VectorFunction {
public:
explicit ConcatWs(const std::optional<std::string>& separator)
Expand Down Expand Up @@ -343,6 +345,7 @@ class ConcatWs : public exec::VectorFunction {
// For holding constant separator.
const std::optional<std::string> separator_;
};
} // namespace

TypePtr ConcatWsCallToSpecialForm::resolveType(
const std::vector<TypePtr>& /*argTypes*/) {
Expand Down

0 comments on commit e500ae4

Please sign in to comment.