17 lines
412 B
C++
17 lines
412 B
C++
#ifndef MATADOR_QUERY_UTILS_HPP
|
|
#define MATADOR_QUERY_UTILS_HPP
|
|
|
|
#include "matador/sql/dialect.hpp"
|
|
|
|
#include <string>
|
|
|
|
namespace matador::sql {
|
|
class dialect;
|
|
}
|
|
namespace matador::query {
|
|
class column;
|
|
|
|
[[nodiscard]] std::string prepare_identifier(const sql::dialect& d, const column &col);
|
|
[[nodiscard]] std::string prepare_criteria(const sql::dialect& d, const column &col);
|
|
}
|
|
#endif //MATADOR_QUERY_UTILS_HPP
|