1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-30 11:22:14 +03:00

A fix and test case for bug#5688 "Upgraded 4.1.5 Server seg faults"

This commit is contained in:
konstantin@mysql.com
2004-09-23 18:01:55 +04:00
parent 12f7fb8233
commit aa80184072
3 changed files with 32 additions and 12 deletions

View File

@@ -289,3 +289,11 @@ execute stmt using @var;
select * from t1;
deallocate prepare stmt;
drop table t1;
prepare stmt from "select 'abc' like convert('abc' using utf8)";
execute stmt;
'abc' like convert('abc' using utf8)
1
execute stmt;
'abc' like convert('abc' using utf8)
1
deallocate prepare stmt;