has many fetch with join

This commit is contained in:
Sascha Kühl
2025-02-19 14:51:42 +01:00
parent 784f6e768d
commit 8ab8274d93
19 changed files with 264 additions and 52 deletions
+1 -4
View File
@@ -1,8 +1,6 @@
#ifndef QUERY_RECORD_HPP
#define QUERY_RECORD_HPP
#include "matador/utils/access.hpp"
#include "matador/sql/field.hpp"
#include <vector>
@@ -34,8 +32,7 @@ public:
~record() = default;
template<class Operator>
void process(Operator &op)
{
void process(Operator &op) {
for(auto &f : fields_) {
f.get().process(op);
}