|
#ifndef QUERY_PLACEHOLDER_HPP
|
|
#define QUERY_PLACEHOLDER_HPP
|
|
|
|
namespace matador::sql {
|
|
|
|
struct placeholder {};
|
|
|
|
inline constexpr bool operator==(const placeholder&, const placeholder&) { return true; }
|
|
|
|
const placeholder _;
|
|
|
|
}
|
|
|
|
#endif //QUERY_PLACEHOLDER_HPP
|