Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.5
-
None
Description
10.5 0e04beb2 |
perfschema.statement_program_concurrency [ fail ]
|
Test ended at 2020-03-11 00:55:30
|
|
CURRENT_TEST: perfschema.statement_program_concurrency
|
mysqltest: At line 32: query 'LOAD DATA INFILE '../../std_data/wl5766_data.txt' INTO TABLE t1' failed: 13: Can't get stat of '/data/bld/10.5-daily/mysql-test/var/std_data/wl5766_data.txt' (Errcode: 2 "No such file or directory")
|
|
The result from queries just before the failure was:
|
TRUNCATE TABLE performance_schema.events_statements_summary_by_program;
|
TRUNCATE TABLE performance_schema.events_statements_history;
|
# concurrency check through multi connections
|
CREATE DATABASE db1;
|
CREATE DATABASE db2;
|
CREATE DATABASE db3;
|
connect con1,localhost,root,,db1;
|
USE db1;
|
CREATE TABLE t1(
|
i INT NOT NULL
|
);
|
LOAD DATA INFILE '../../std_data/wl5766_data.txt' INTO TABLE t1;
|