~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to mysql-test/suite/falcon/t/falcon_bug_26058.test

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
--source include/have_falcon.inc
2
 
#
3
 
# Bug #26058: Falcon: warnings with yen sign and overline in ujis
4
 
#
5
 
--echo *** Bug #26058 ***
6
 
 
7
 
# ----------------------------------------------------- #
8
 
# --- Initialisation                                --- #
9
 
# ----------------------------------------------------- #
10
 
let $engine = 'Falcon';
11
 
eval SET @@storage_engine = $engine;
12
 
 
13
 
--disable_warnings
14
 
DROP TABLE IF EXISTS t1;
15
 
--enable_warnings
16
 
 
17
 
SET NAMES utf8;
18
 
CREATE TABLE t1 (a varchar(5) character set ujis);
19
 
INSERT INTO t1 values ('¥'),('‾');
20
 
 
21
 
# ----------------------------------------------------- #
22
 
# --- Test                                          --- #
23
 
# ----------------------------------------------------- #
24
 
SELECT count(*) FROM t1 WHERE a IS NOT NULL;
25
 
 
26
 
# ----------------------------------------------------- #
27
 
# --- Check                                         --- #
28
 
# ----------------------------------------------------- #
29
 
SELECT count(*) FROM t1;
30
 
 
31
 
# ----------------------------------------------------- #
32
 
# --- Final cleanup                                 --- #
33
 
# ----------------------------------------------------- #
34
 
DROP TABLE t1;