/usr/lib/mysql-testsuite/r/symlink_windows.result is in mysql-testsuite-5.6 5.6.16-1~exp1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | DROP DATABASE IF EXISTS testdb;
CREATE DATABASE testdb;
USE testdb;
CREATE TABLE t1 (a int not null auto_increment, b char(16) not null, primary key (a))
ENGINE=myisam ;
INSERT INTO t1 (b) VALUES ("test"),("test1"),("test2"),("test3");
SELECT * from t1;
a b
1 test
2 test1
3 test2
4 test3
Found: 1
DROP DATABASE testdb;
|