TODO
# configure with "debug" preset
cmake --preset=debug
# build all targets
cmake --build ./build/debug
# start server with custom port
./build/src/server/server --port=5432
ctest --test-dir build
./build/sql_test
# TODO: this is broken
./scripts/format/run-format.sh
- https://www.cockroachlabs.com/docs/stable/partitioning
- https://www.postgresql.org/docs/current/ddl-partitioning.html
- https://rasiksuhail.medium.com/guide-to-postgresql-table-partitioning-c0814b0fbd9b
A database may only be opened by one process at a time. - https://github.com/facebook/rocksdb/wiki/basic-operations#concurrency
- valgrind
- sanitizer (address, memory, undefined)