File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
1
#
2
- # Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
2
+ # Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
3
3
#
4
4
# This test is executed once after each test to check the servers
5
5
# for unexpected warnings found in the servers error log
@@ -46,7 +46,7 @@ create temporary table error_log (
46
46
row int auto_increment primary key,
47
47
suspicious int default 1,
48
48
file_name varchar(255),
49
- line varchar(1024) default null
49
+ line varchar(1024) charset latin1 default null
50
50
) engine=myisam;
51
51
COMMIT;
52
52
@@ -60,6 +60,7 @@ let $log_warning= $log_error.warnings;
60
60
# an attempt to load the file using LOAD DATA LOCAL is made
61
61
--error 0,1290
62
62
eval load data infile '$log_warning' into table error_log
63
+ character set latin1
63
64
fields terminated by 'xykls37' escaped by ''
64
65
ignore 1 lines
65
66
(line)
@@ -69,6 +70,7 @@ if ($mysql_errno)
69
70
{
70
71
# Try LOAD DATA LOCAL
71
72
eval load data local infile '$log_warning' into table error_log
73
+ character set latin1
72
74
fields terminated by 'xykls37' escaped by ''
73
75
ignore 1 lines
74
76
(line)
You can’t perform that action at this time.
0 commit comments