20 lines
308 B
C++
20 lines
308 B
C++
#ifndef JOIN_DATA_HPP
|
|
#define JOIN_DATA_HPP
|
|
|
|
#include "matador/query/basic_condition.hpp"
|
|
|
|
#include "matador/sql/table.hpp"
|
|
|
|
#include <memory>
|
|
|
|
namespace matador::query {
|
|
|
|
struct join_data
|
|
{
|
|
std::shared_ptr<sql::table> join_table;
|
|
std::unique_ptr<basic_condition> condition;
|
|
};
|
|
|
|
}
|
|
#endif //JOIN_DATA_HPP
|