future group support
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good

This commit is contained in:
Scott E. Graves 2024-10-03 13:54:48 -05:00
parent 67ac6a6c6e
commit 8cf169849c

View File

@ -225,6 +225,10 @@ public:
}
};
// .where([](db_group &grp) {
// grp.where("column1").equals("test0").and_where("column1").equals(
// "test1");
// });
template <typename context_t, typename next_t> struct db_where_t final {
db_where_t(std::shared_ptr<context_t> ctx, std::string column_name)
: context_(std::move(ctx)), column_name_(std::move(column_name)) {}