Commit 475bc6ed authored by unknown's avatar unknown

manual.texi INET_ATON() formula was documented incorrectly.


Docs/manual.texi:
  INET_ATON() formula was documented incorrectly.
parent 3efabab2
......@@ -32757,7 +32757,7 @@ mysql> select INET_ATON("209.207.224.40");
@end example
The generated number is always in network byte order; For example the
above number is calculated as @code{209*255^3 + 207*255^2 + 224*255 +40}.
above number is calculated as @code{209*256^3 + 207*256^2 + 224*256 +40}.
@findex MASTER_POS_WAIT()
@item MASTER_POS_WAIT(log_name, log_pos)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment