We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e22971 commit 3ce1dbbCopy full SHA for 3ce1dbb
tests/logictest/suites/base/03_dml/03_0025_delete_from
@@ -161,6 +161,30 @@ select count(*) = 2 from t;
161
----
162
1
163
164
+statement ok
165
+drop table t all;
166
+
167
168
+create table t(a Int, b Int);
169
170
171
+insert into t select number, 50 - number from numbers(100);
172
173
+statement query B
174
+select count(*) = 100 from t;
175
176
+----
177
+1
178
179
180
+delete from t where b > 0;
181
182
183
+select count(*) = 50 from t;
184
185
186
187
188
189
190
statement ok
0 commit comments