MySQL 9.0.0
Source Code Documentation
Coding Guidelines

This section shows the guidelines that MySQL developers follow when writing new code.

New MySQL code uses the Google C++ coding style (https://google.github.io/styleguide/cppguide.html), with two exceptions:

  • Member variable names: Do not use foo_. Instead, use m_foo (non-static) or s_foo (static).

Old projects and modifications to old code use an older MySQL-specific style for the time being. Since 8.0, MySQL style uses the same formatting rules as Google coding style (e.g., brace placement, indentation, line lengths, etc.), but differs in a few important aspects:

  • Class names: Do not use MyClass. Instead, use My_class.
  • Function names: Use snake_case().
  • Comment Style: Use either the // or /* */ syntax. // is much more common but both syntaxes are permitted for the time being.
  • Doxygen comments: Use /** ... */ syntax and not ///.
  • Doxygen commands: Use '@' and not '\' for doxygen commands.
  • You may see structs starting with st_ and being typedef-ed to some UPPERCASE (e.g. typedef struct st_foo { ... } FOO). However, this is legacy from when the codebase contained C. Do not make such new typedefs nor structs with st_ prefixes, and feel free to remove those that already exist, except in public header files that are part of libmysql (which need to be parseable as C99).

Code formatting is enforced by use of clang-format throughout the code base. However, note that formatting is only one part of coding style; you are required to take care of non-formatting issues yourself, such as following naming conventions, having clear ownership of code or minimizing the use of macros. See the Google coding style guide for the entire list.

Consistent style is important for us, because everyone must know what to expect. Knowing our rules, you'll find it easier to read our code, and when you decide to contribute (which we hope you'll consider!) we'll find it easier to read and review your code.