From 8cf169849c6fb59e91d0283e51e223846101aadd Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Thu, 3 Oct 2024 13:54:48 -0500 Subject: [PATCH] future group support --- repertory/librepertory/include/database/db_common.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/repertory/librepertory/include/database/db_common.hpp b/repertory/librepertory/include/database/db_common.hpp index db2a4c23..585fd11c 100644 --- a/repertory/librepertory/include/database/db_common.hpp +++ b/repertory/librepertory/include/database/db_common.hpp @@ -225,6 +225,10 @@ public: } }; +// .where([](db_group &grp) { +// grp.where("column1").equals("test0").and_where("column1").equals( +// "test1"); +// }); template struct db_where_t final { db_where_t(std::shared_ptr ctx, std::string column_name) : context_(std::move(ctx)), column_name_(std::move(column_name)) {}