summaryrefslogtreecommitdiff
path: root/mysql-test/t/func_system.test
diff options
context:
space:
mode:
authorunknown <bar@mysql.com>2005-03-28 12:24:12 +0500
committerunknown <bar@mysql.com>2005-03-28 12:24:12 +0500
commit949875cb7b915de001f0c0754926ccbdbf0aba38 (patch)
treebe893cf619dd957bb13085a13bbcba2ac84323a6 /mysql-test/t/func_system.test
parent3fd639493aea5c340acc2e28617e8d917d54ff7d (diff)
downloadmariadb-git-949875cb7b915de001f0c0754926ccbdbf0aba38.tar.gz
func_system.test, ctype_utf8.test, func_system.result, ctype_utf8.result:
Prove that the queries mentioned in Bugs#5980: NULL requires a characterset in a union works fine after recent changes related to itroducing more coercibility level: IRNORABLE and SYSCONST. mysql-test/r/ctype_utf8.result: Prove that the queries mentioned in Bugs#5980: NULL requires a characterset in a union works fine after recent changes related to itroducing more coercibility level: IRNORABLE and SYSCONST. mysql-test/r/func_system.result: Prove that the queries mentioned in Bugs#5980: NULL requires a characterset in a union works fine after recent changes related to itroducing more coercibility level: IRNORABLE and SYSCONST. mysql-test/t/ctype_utf8.test: Prove that the queries mentioned in Bugs#5980: NULL requires a characterset in a union works fine after recent changes related to itroducing more coercibility level: IRNORABLE and SYSCONST. mysql-test/t/func_system.test: Prove that the queries mentioned in Bugs#5980: NULL requires a characterset in a union works fine after recent changes related to itroducing more coercibility level: IRNORABLE and SYSCONST.
Diffstat (limited to 'mysql-test/t/func_system.test')
-rw-r--r--mysql-test/t/func_system.test2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/func_system.test b/mysql-test/t/func_system.test
index 7fff165e057..bbfef25bcfe 100644
--- a/mysql-test/t/func_system.test
+++ b/mysql-test/t/func_system.test
@@ -38,4 +38,6 @@ create table t1 (a char(10)) character set latin1;
select * from t1 where a=version();
select * from t1 where a=database();
select * from t1 where a=user();
+insert into t1 values ('a');
+select left(concat(a,version()),1) from t1;
drop table t1;