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:
@ -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;
|
||||
|
Reference in New Issue
Block a user