From 4be8b9f6549c80351d12e89e89b7430f8e4c4e6a Mon Sep 17 00:00:00 2001 From: Roland Bock Date: Mon, 20 Jun 2022 06:57:36 +0200 Subject: [PATCH] Add example for #448 --- tests/core/usage/Remove.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/core/usage/Remove.cpp b/tests/core/usage/Remove.cpp index f3523a08..c3fd6bbc 100644 --- a/tests/core/usage/Remove.cpp +++ b/tests/core/usage/Remove.cpp @@ -24,7 +24,7 @@ */ #include -#include +#include #include "Sample.h" #include "MockDb.h" #include "is_regular.h" @@ -66,5 +66,7 @@ int Remove(int, char* []) db(r); + remove_from(t).where(t.beta.in(select(f.delta).from(f).unconditionally())); + return 0; }