mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Improvement of the auxiliary routines include/show_msg*.inc
- replace @message by $message --> The annoying protocol line "SET @message= <value>" will disappear. - extended description - some examples added mysql-test/include/show_msg.inc: replace @message by $message mysql-test/include/show_msg80.inc: - replace @message by $message - extended description - some examples added mysql-test/r/mysqltest.result: updated results mysql-test/t/mysqltest.test: sub testcases for the show_msg*.inc scripts modified, because the script properties are altered
This commit is contained in:
@ -148,17 +148,14 @@ a'b a"b
|
||||
select 'aaa\\','aa''a',"aa""a";
|
||||
aaa\ aa'a aa"a
|
||||
aaa\ aa'a aa"a
|
||||
SET @message = 'Here comes a message';
|
||||
|
||||
Here comes a message
|
||||
--------------------
|
||||
SET @message = USER();
|
||||
|
||||
root@localhost
|
||||
--------------
|
||||
SET @message = 'Here comes a very very long message that is longer then 80 characters
|
||||
on multiple lines';
|
||||
|
||||
Here comes a very very long message that is longer then 80 characters
|
||||
on multiple lines
|
||||
"Here comes a very very long message that
|
||||
- is longer then 80 characters and
|
||||
- consists of several lines"
|
||||
--------------------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user