Function inet_ntoa

Source
pub fn inet_ntoa(num: i64) -> Result<Box<str>>
Expand description

Given a numeric IPv4 network address in network byte order (big endian), returns the dotted-quad string representation of the address as a string.

This function is ported from MySQL. Ref: https://dev.mysql.com/doc/refman/8.3/en/miscellaneous-functions.html#function_inet-ntoa.

ยงExample

query T
select inet_ntoa(167773449);
----
10.0.5.9