Skip to content

Commit

Permalink
Add ends_with Presto function (facebookincubator#6908)
Browse files Browse the repository at this point in the history
Summary: Pull Request resolved: facebookincubator#6908

Reviewed By: xiaoxmeng

Differential Revision: D49948988

Pulled By: mbasmanova

fbshipit-source-id: c64daed4a7e95b954b10c7034fbd8a1b4753321f
  • Loading branch information
mbasmanova authored and ericyuliu committed Oct 12, 2023
1 parent 7959669 commit 27b55d1
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 0 deletions.
4 changes: 4 additions & 0 deletions velox/docs/functions/presto/string.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ String Functions
This function provides the same functionality as the
SQL-standard concatenation operator (``||``).

.. function:: ends_with(string, substring) -> boolean

Returns whether ``string`` ends_with with ``substring``.

.. function:: from_utf8(binary) -> varchar

Decodes a UTF-8 encoded string from ``binary``. Invalid UTF-8 sequences
Expand Down
18 changes: 18 additions & 0 deletions velox/functions/prestosql/StringFunctions.h
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,24 @@ struct StartsWithFunction {
}
};

template <typename T>
struct EndsWithFunction {
VELOX_DEFINE_FUNCTION_TYPES(T);

FOLLY_ALWAYS_INLINE void call(
out_type<bool>& result,
const arg_type<Varchar>& x,
const arg_type<Varchar>& y) {
if (x.size() < y.size()) {
result = false;
return;
}

result =
(memcmp(x.data() + (x.size() - y.size()), y.data(), y.size()) == 0);
}
};

/// Pad functions
/// lpad(string, size, padString) → varchar
/// Left pads string to size characters with padString. If size is
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ void registerSimpleFunctions(const std::string& prefix) {

registerFunction<StartsWithFunction, bool, Varchar, Varchar>(
{prefix + "starts_with"});
registerFunction<EndsWithFunction, bool, Varchar, Varchar>(
{prefix + "ends_with"});

registerFunction<SubstrFunction, Varchar, Varchar, int64_t>(
{prefix + "substr"});
Expand Down
18 changes: 18 additions & 0 deletions velox/functions/prestosql/tests/StringFunctionsTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -870,6 +870,24 @@ TEST_F(StringFunctionsTest, startsWith) {
ASSERT_FALSE(startsWith("", " "));
}

TEST_F(StringFunctionsTest, endsWith) {
auto endsWith = [&](const std::string& x, const std::string& y) {
return evaluateOnce<bool>(
"ends_with(c0, c1)", std::optional(x), std::optional(y))
.value();
};

ASSERT_TRUE(endsWith("", ""));
ASSERT_TRUE(endsWith("Hello world!", ""));
ASSERT_TRUE(endsWith("Hello world!", "world!"));
ASSERT_TRUE(endsWith("Hello world!", "lo world!"));
ASSERT_TRUE(endsWith("Hello world!", "Hello world!"));

ASSERT_FALSE(endsWith("Hello world!", " Hello world!"));
ASSERT_FALSE(endsWith("Hello world!", "hello"));
ASSERT_FALSE(endsWith("", " "));
}

// Test strpos function
template <typename TInstance>
void StringFunctionsTest::testStringPositionAllFlatVector(
Expand Down

0 comments on commit 27b55d1

Please sign in to comment.