diff options
author | jimw@mysql.com <> | 2005-01-31 17:32:22 -0800 |
---|---|---|
committer | jimw@mysql.com <> | 2005-01-31 17:32:22 -0800 |
commit | de16b5f48f0f30660f5df6c5269f1536fc5bf7e5 (patch) | |
tree | 660623199b7b0cac752543e088906b04c1e4ce85 /mysql-test/t | |
parent | 6471b65ad0b56b3e7aba4dc34ac8c4fed9d91695 (diff) | |
parent | 4b8d81ff1e0660201ba133f706c060521266dccc (diff) | |
download | mariadb-git-de16b5f48f0f30660f5df6c5269f1536fc5bf7e5.tar.gz |
Merge bk-internal:/home/bk/mysql-4.1
into mysql.com:/home/jimw/my/mysql-4.1-clean
Diffstat (limited to 'mysql-test/t')
-rw-r--r-- | mysql-test/t/compare.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/t/compare.test b/mysql-test/t/compare.test index b0cef48dd3f..e3c042e608a 100644 --- a/mysql-test/t/compare.test +++ b/mysql-test/t/compare.test @@ -30,3 +30,6 @@ CREATE TABLE t1 (a char(10) not null); INSERT INTO t1 VALUES ('a'),('a\0'),('a\t'),('a '); SELECT hex(a),STRCMP(a,'a'), STRCMP(a,'a ') FROM t1; DROP TABLE t1; + +# Bug #8134: Comparison against CHAR(31) at end of string +SELECT CHAR(31) = '', '' = CHAR(31); |