1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

use local version when doing merge with 3.23.44

This commit is contained in:
unknown
2001-11-04 16:14:57 +02:00
parent 0d1ba873aa
commit cec36f0f14
3 changed files with 233 additions and 31 deletions

View File

@ -1,6 +1,11 @@
drop table if exists t1;
create table t1 (a int);
select count(a) as b from t1 where a=0 having b > 0;
b
insert into t1 values (null);
select count(a) as b from t1 where a=0 having b > 0;
b
select count(a) as b from t1 where a=0 having b >=0;
b
0
id start end chr_strand
133197 813898 813898 -1.0000
drop table t1;