diff options
Diffstat (limited to 'mysql-test/include')
-rw-r--r-- | mysql-test/include/ctype_utf8_table.inc | 3 | ||||
-rw-r--r-- | mysql-test/include/have_ssl_crypto_functs.inc | 8 |
2 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/include/ctype_utf8_table.inc b/mysql-test/include/ctype_utf8_table.inc index 28db21c06d2..006b03528bc 100644 --- a/mysql-test/include/ctype_utf8_table.inc +++ b/mysql-test/include/ctype_utf8_table.inc @@ -1,6 +1,8 @@ CREATE TABLE t1 (a CHAR(1)) CHARACTER SET utf8; INSERT INTO t1 VALUES ('0'),('1'),('2'),('3'),('4'),('5'),('6'),('7'); INSERT INTO t1 VALUES ('8'),('9'),('A'),('B'),('C'),('D'),('E'),('F'); + +--disable_warnings # # Populate tables head and tail with values '00'-'FF' # @@ -40,5 +42,6 @@ AND (middle BETWEEN '80' AND 'BF') AND (tail BETWEEN '80' AND 'BF') AND NOT (head='E0' AND middle BETWEEN '80' AND '9F') ORDER BY head, middle, tail; +--disable_warnings SELECT count(*) FROM t1; diff --git a/mysql-test/include/have_ssl_crypto_functs.inc b/mysql-test/include/have_ssl_crypto_functs.inc new file mode 100644 index 00000000000..d32f059e4fa --- /dev/null +++ b/mysql-test/include/have_ssl_crypto_functs.inc @@ -0,0 +1,8 @@ +-- require r/have_ssl_is_yes_or_disabled_only.require +disable_query_log; +# "yes" means that the ssl library is found and the server can communicate using SSL. +# "no" means that there are no SSL functions in the server. +# "disabled" means that ssl functions exist, but communication is disabled for some reason. +replace_regex s/(YES|DISABLED)/yesordisabled/; +show variables like "have_ssl"; +enable_query_log; |