Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
ea21b3a5
Commit
ea21b3a5
authored
Dec 15, 2011
by
Mattias Jonsson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Post push fix for merge.test and mysqlcheck.test on windows
parent
5a0e1aa4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
3 deletions
+9
-3
mysql-test/r/mysqlcheck.result
mysql-test/r/mysqlcheck.result
+1
-0
mysql-test/t/merge.test
mysql-test/t/merge.test
+7
-3
mysql-test/t/mysqlcheck.test
mysql-test/t/mysqlcheck.test
+1
-0
No files found.
mysql-test/r/mysqlcheck.result
View file @
ea21b3a5
...
...
@@ -147,6 +147,7 @@ DROP TABLE `@`;
CREATE TABLE `я` (a INT);
SET NAMES DEFAULT;
mysqlcheck --default-character-set="latin1" --databases test
call mtr.add_suppression("Can't find file: '..test.@003f.frm'");
test.?
Error : Table doesn't exist
status : Operation failed
...
...
mysql-test/t/merge.test
View file @
ea21b3a5
...
...
@@ -1817,9 +1817,13 @@ CREATE TABLE t1(a INT);
--
echo
# Test reattach merge failure
LOCK
TABLES
m1
READ
;
--
echo
# Replace 't1' with 't3' table using file operations.
remove_file
$MYSQLD_DATADIR
/
test
/
t1
.
frm
;
remove_file
$MYSQLD_DATADIR
/
test
/
t1
.
MYI
;
remove_file
$MYSQLD_DATADIR
/
test
/
t1
.
MYD
;
# move + remove is a work around for windows.
move_file
$MYSQLD_DATADIR
/
test
/
t1
.
frm
$MYSQLD_DATADIR
/
test
/
oldt1
.
frm
;
move_file
$MYSQLD_DATADIR
/
test
/
t1
.
MYI
$MYSQLD_DATADIR
/
test
/
oldt1
.
MYI
;
move_file
$MYSQLD_DATADIR
/
test
/
t1
.
MYD
$MYSQLD_DATADIR
/
test
/
oldt1
.
MYD
;
remove_file
$MYSQLD_DATADIR
/
test
/
oldt1
.
frm
;
remove_file
$MYSQLD_DATADIR
/
test
/
oldt1
.
MYI
;
remove_file
$MYSQLD_DATADIR
/
test
/
oldt1
.
MYD
;
copy_file
$MYSQLD_DATADIR
/
test
/
t3
.
frm
$MYSQLD_DATADIR
/
test
/
t1
.
frm
;
copy_file
$MYSQLD_DATADIR
/
test
/
t3
.
MYI
$MYSQLD_DATADIR
/
test
/
t1
.
MYI
;
copy_file
$MYSQLD_DATADIR
/
test
/
t3
.
MYD
$MYSQLD_DATADIR
/
test
/
t1
.
MYD
;
...
...
mysql-test/t/mysqlcheck.test
View file @
ea21b3a5
...
...
@@ -138,6 +138,7 @@ CREATE TABLE `я` (a INT);
SET
NAMES
DEFAULT
;
--
echo
mysqlcheck
--
default
-
character
-
set
=
"latin1"
--
databases
test
# Error returned depends on platform, replace it with "Table doesn't exist"
call
mtr
.
add_suppression
(
"Can't find file: '..test.@003f.frm'"
);
--
replace_result
"Can't find file: './test/@003f.frm' (errno: 22)"
"Table doesn't exist"
"Table 'test.?' doesn't exist"
"Table doesn't exist"
--
exec
$MYSQL_CHECK
--
default
-
character
-
set
=
"latin1"
--
databases
test
--
echo
mysqlcheck
--
default
-
character
-
set
=
"utf8"
--
databases
test
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment