| Server IP : 88.99.149.37 / Your IP : 216.73.216.141 Web Server : nginx/1.31.2 System : Linux server-88-99-149-37 6.12.0-124.56.5.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Fri May 15 06:12:08 EDT 2026 x86_64 User : muralimurth ( 1015) PHP Version : 8.4.23 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/local/mysql/mysql-test/main/ |
Upload File : |
--echo Start of 5.4 tests # # ls_messages # CREATE TABLE t1(f1 INT); connect (con1,localhost,root,,test); connection con1; SET lc_messages=ru_RU; SHOW VARIABLES LIKE 'lc_messages'; --error ER_TABLE_EXISTS_ERROR CREATE TABLE t1(f1 INT); SET NAMES utf8; --error ER_TABLE_EXISTS_ERROR CREATE TABLE t1(f1 INT); connection default; SHOW VARIABLES LIKE 'lc_messages'; --error ER_TABLE_EXISTS_ERROR CREATE TABLE t1(f1 INT); SHOW GLOBAL VARIABLES LIKE 'lc_messages'; SET GLOBAL lc_messages=ru_RU; SHOW GLOBAL VARIABLES LIKE 'lc_messages'; SET GLOBAL lc_messages=en_US; disconnect con1; DROP TABLE t1; # # Bug#1406 Tablename in Errormessage not in default characterset # --error ER_BAD_TABLE_ERROR drop table `ק`; # # Bug#14602 Error messages not returned in character_set_results # connect (con1,localhost,root,,test); connection con1; SET lc_messages=cs_CZ; SET NAMES UTF8; --error ER_BAD_DB_ERROR USE nonexistant; disconnect con1; connection default; --echo # --echo # Bug#12736295: Buffer overflow for variable converted_err --echo # with non-latin1 server error message --echo # connect (con1,localhost,root,,test); SET lc_messages=ru_RU; SET NAMES latin1; --error ER_PARSE_ERROR --query SELECT '01234567890123456789012345678901234\' disconnect con1; connection default; --echo End of 5.5 tests --echo # --echo # MDEV-22130 SHOW WARNINGS will SIGSEGV 10.5 optimized build after setting CHARACTER_SET_RESULTS to NULL and running any invalid SQL | Binary_string::copy_printable_hhhh --echo # SET NAMES latin1; SET @@CHARACTER_SET_RESULTS=NULL; --error ER_PARSE_ERROR a; SHOW WARNINGS; SET NAMES latin1;