Files
metabuilder/dbal/cpp/src/adapters/sql/postgres_adapter.cpp
JohnDoe6345789 17931e3167 feat(tests): add comprehensive tests for workflow engine functionality
- Implemented unit tests for the WorkflowEngine, covering various scenarios including simple workflows, condition handling, and error cases.
- Created a test coverage report generator to identify untested functions and provide actionable recommendations.
- Added a symlink for vite 2 configuration to streamline build processes.
2025-12-31 21:42:06 +00:00

13 lines
205 B
C++

#include "sql_adapter.hpp"
namespace dbal {
namespace adapters {
namespace sql {
PostgresAdapter::PostgresAdapter(const SqlConnectionConfig& config)
: SqlAdapter(config, Dialect::Postgres) {}
}
}
}