mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Fix for bug in WHERE key='j' or key='J'
This commit is contained in:
@ -55,3 +55,13 @@ believe
|
||||
believe in love
|
||||
aString
|
||||
believe in myself
|
||||
count(*)
|
||||
602
|
||||
count(*)
|
||||
602
|
||||
count(*)
|
||||
602
|
||||
count(*)
|
||||
389
|
||||
count(*)
|
||||
213
|
||||
|
@ -105,7 +105,6 @@ drop table t1;
|
||||
# Problem with binary strings
|
||||
#
|
||||
|
||||
DROP TABLE IF EXISTS t1;
|
||||
CREATE TABLE t1 (
|
||||
t1ID int(10) unsigned NOT NULL auto_increment,
|
||||
art char(1) binary NOT NULL default '',
|
||||
@ -161,4 +160,6 @@ INSERT INTO t1 (art) VALUES ('j'),('J'),('j'),('J'),('j'),('J'),('j'),('J'),('j'
|
||||
select count(*) from t1 where upper(art) = 'J';
|
||||
select count(*) from t1 where art = 'J' or art = 'j';
|
||||
select count(*) from t1 where art = 'j' or art = 'J';
|
||||
select count(*) from t1 where art = 'j';
|
||||
select count(*) from t1 where art = 'J';
|
||||
drop table t1;
|
||||
|
Reference in New Issue
Block a user