Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: clang-format instructions .clang-format is being verified now.

...

First, please follow the C++ style guide. We are sticklers for adherence to the guide (with a couple of exceptions), and we won’t accept any patch that needs work in this regard. For Java and Python we do not have formal guides yet (writing one would be an excellent contribution!); please try to follow the standards set by existing code. We will help you with this when your patch is reviewed.

You can use clang-format or clang-format-diff to format the whitespace of the C++ parts of your patch using the file .clang-format included in the git repository, which is tuned to match our current coding style as closely as possible.  When you submit a clang-formatted patch, please do not reformat the entire file you are working on, but only the parts of it you are changing.

Second, please include tests with your patch. If your patch does not include tests, it will not be accepted. If you are unsure how to write tests for a particular component, please ask on the impala-dev mailing list for guidance.

...