tree: 9e9b31f8c68d57e54e8b210e12eee4f7ac89edce [path history] [tgz]
  1. bin/
  2. include/
  3. lib/
  4. regress/
  5. src/
  6. test/
  7. .gitignore
  8. Makefile
  9. README.md
gpcontrib/gpcloud/README.md

Build

make -B to build the extension for GPDB.

make -B gpcheckcloud to build gpcheckcloud.

Test

Run Unit Tests

make test

Test Code Coverage

make coverage

Coding Style

Based on Google C++ style, especially:

  • No tabs, 4 spaces only.
  • CamelCase for classes, camelCase for methods and variables.
  • Avoid pointers, use references as much as possible, unless returning NULL.
  • Use exceptions properly, instead of checking returning values everywhere.