query: add stubs for 'bind' types

This commit is contained in:
Danny Robson 2024-03-04 11:43:17 +10:00
parent e8d40f1fab
commit eb72b2c2c4
2 changed files with 12 additions and 0 deletions

View File

@ -29,6 +29,7 @@ add_library(cruft-db
query/fwd.hpp
query/binary.hpp
query/bind.hpp
query/cast.hpp
query/expression.hpp
query/function.hpp

11
query/bind.hpp Normal file
View File

@ -0,0 +1,11 @@
#pragma once
#include "./expression.hpp"
#include <cruft/util/fixed_string.hpp>
template <cruft::fixed_string NameV>
struct bind_t : expression_t<bind_t<NameV>> {
static constexpr auto name = NameV;
};