We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85654c2 commit dfb4504Copy full SHA for dfb4504
1 file changed
src/iceberg/expression/predicate.cc
@@ -164,6 +164,8 @@ inline int32_t CountUTF8CodePoints(std::string_view str) {
164
}
165
166
return code_point_count;
167
+}
168
+
169
bool IsNan(const Literal& literal) {
170
const auto& value = literal.value();
171
if (std::holds_alternative<float>(value)) {
@@ -182,8 +184,6 @@ bool StartsWith(const Literal& lhs, const Literal& rhs) {
182
184
return std::get<std::string>(lhs_value).starts_with(std::get<std::string>(rhs_value));
183
185
186
return false;
-}
-
187
} // namespace
188
189
template <typename B>
0 commit comments