~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to mysql-test/suite/falcon/r/falcon_bug_26058.result

manual merge 6.0-main --> 6.0-bka-review

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
*** Bug #26058 ***
2
 
SET @@storage_engine = 'Falcon';
3
 
DROP TABLE IF EXISTS t1;
4
 
SET NAMES utf8;
5
 
CREATE TABLE t1 (a varchar(5) character set ujis);
6
 
INSERT INTO t1 values ('¥'),('‾');
7
 
SELECT count(*) FROM t1 WHERE a IS NOT NULL;
8
 
count(*)
9
 
2
10
 
SELECT count(*) FROM t1;
11
 
count(*)
12
 
2
13
 
DROP TABLE t1;