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
bd63a544
Commit
bd63a544
authored
Mar 30, 2012
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
20c2cea4
fb3eb4a7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
mysql-test/suite/maria/t/maria-autozerofill.test
mysql-test/suite/maria/t/maria-autozerofill.test
+3
-0
storage/maria/ha_maria.cc
storage/maria/ha_maria.cc
+1
-1
No files found.
mysql-test/suite/maria/t/maria-autozerofill.test
View file @
bd63a544
...
...
@@ -54,6 +54,7 @@ EOF
disable_ps_protocol
;
# see aria-recover.test
replace_regex
/
Table
.*
t1
/
t1
/
;
replace_result
\\
/
;
select
*
from
t1
;
enable_ps_protocol
;
flush
table
t1
;
...
...
@@ -95,7 +96,9 @@ EOF
check
table
t2
;
check
table
t2
;
repair
table
t2
;
replace_result
\\
/
;
optimize
table
t3
;
replace_result
\\
/
;
analyze
table
t4
;
drop
database
mysqltest
;
storage/maria/ha_maria.cc
View file @
bd63a544
...
...
@@ -1187,7 +1187,7 @@ int ha_maria::check(THD * thd, HA_CHECK_OPT * check_opt)
if
((
file
->
s
->
state
.
changed
&
(
STATE_CRASHED_FLAGS
|
STATE_MOVED
))
==
STATE_MOVED
)
{
_ma_check_print_error
(
&
param
,
zerofill_error_msg
);
_ma_check_print_error
(
&
param
,
"%s"
,
zerofill_error_msg
);
return
HA_ADMIN_CORRUPT
;
}
...
...
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