schema progress (does not compile)

This commit is contained in:
2025-12-31 11:56:12 +01:00
parent d104222fdd
commit ab2d39407c
65 changed files with 1355 additions and 922 deletions
+4 -7
View File
@@ -23,18 +23,15 @@ using namespace matador::test;
namespace matador::test::detail {
template<class Type, typename... Args>
[[maybe_unused]] object_ptr<Type> make_object_ptr(Args&&... args)
{
[[maybe_unused]] object_ptr<Type> make_object_ptr(Args&&... args) {
return object_ptr(new Type(std::forward<Args>(args)...));
}
}
class StatementTestFixture : public QueryFixture
{
class StatementTestFixture : public QueryFixture {
public:
StatementTestFixture()
{
const auto obj = object_generator::generate<airplane>(repo, "airplane");
StatementTestFixture() {
const auto obj = object_generator::generate<airplane>(repo.repo(), "airplane");
const auto res = query::create()
.table(obj->name())
.columns(obj->attributes())