mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
- 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.
13 lines
205 B
C++
13 lines
205 B
C++
#include "sql_adapter.hpp"
|
|
|
|
namespace dbal {
|
|
namespace adapters {
|
|
namespace sql {
|
|
|
|
PostgresAdapter::PostgresAdapter(const SqlConnectionConfig& config)
|
|
: SqlAdapter(config, Dialect::Postgres) {}
|
|
|
|
}
|
|
}
|
|
}
|