[improvement](function) standardize some ip functions' signatures #29614

The signatures of functions in these PRs should be more standard:
#27342,
#25510,
#20936,
including the following:
ipv4numtostring,
ipv4stringtonum,
ipv4stringtonumordefault,
ipv4stringtonumornull,
ipv6numtostring.

This PR will add necessary underscores between the words of each of them,
like changing ipv4numtostring to ipv4_num_to_string.
This commit is contained in:
Chester
2024-01-06 16:16:38 +08:00
committed by GitHub
parent 5789b7e380
commit 2c888667ed
21 changed files with 215 additions and 215 deletions

View File

@ -19,7 +19,7 @@
namespace doris::vectorized {
struct NameFunctionIPv4NumToString {
static constexpr auto name = "ipv4numtostring";
static constexpr auto name = "ipv4_num_to_string";
};
void register_function_ip(SimpleFunctionFactory& factory) {