1
#### include/show_msg.inc
3
# This file writes the value set in @message into the
4
# a protocol file as part of executing a test sequence
7
# Add the following to any *.test file:
9
# let $message= <value>;
10
# --source include/show_msg.inc
14
# - Please do not write any spaces between $message and the "=", because the
15
# assignment will not work.
16
# - Be careful with single quotes. They must be escaped like "''" or "\'".
18
# "include/show_msg80.inc" contains a detailed description and examples.
21
eval SET @utf8_message = CONVERT('$message' using utf8);
22
select @utf8_message as ""
24
select repeat(CONVERT('-' using utf8),char_length(@utf8_message));