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
f9af4156
Commit
f9af4156
authored
Jun 29, 2007
by
istruewing@synthia.local
Browse files
Options
Browse Files
Download
Plain Diff
Merge synthia.local:/home/mydev/mysql-5.0-ateam
into synthia.local:/home/mydev/mysql-5.0-axmrg
parents
018df177
6d4033e6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
16 deletions
+19
-16
mysql-test/r/archive.result
mysql-test/r/archive.result
+7
-0
mysql-test/t/archive.test
mysql-test/t/archive.test
+9
-0
sql/ha_archive.cc
sql/ha_archive.cc
+3
-16
No files found.
mysql-test/r/archive.result
View file @
f9af4156
...
...
@@ -12364,3 +12364,10 @@ select * from t1;
i
1
drop table t1;
create table t1(a longblob) engine=archive;
insert into t1 set a='';
insert into t1 set a='a';
check table t1 extended;
Table Op Msg_type Msg_text
test.t1 check status OK
drop table t1;
mysql-test/t/archive.test
View file @
f9af4156
...
...
@@ -1374,3 +1374,12 @@ insert into t1 values (1);
repair
table
t1
use_frm
;
select
*
from
t1
;
drop
table
t1
;
#
# BUG#29207 - archive table reported as corrupt by check table
#
create
table
t1
(
a
longblob
)
engine
=
archive
;
insert
into
t1
set
a
=
''
;
insert
into
t1
set
a
=
'a'
;
check
table
t1
extended
;
drop
table
t1
;
sql/ha_archive.cc
View file @
f9af4156
...
...
@@ -1205,7 +1205,6 @@ bool ha_archive::is_crashed() const
int
ha_archive
::
check
(
THD
*
thd
,
HA_CHECK_OPT
*
check_opt
)
{
int
rc
=
0
;
byte
*
buf
;
const
char
*
old_proc_info
=
thd
->
proc_info
;
ha_rows
count
=
share
->
rows_recorded
;
DBUG_ENTER
(
"ha_archive::check"
);
...
...
@@ -1214,25 +1213,13 @@ int ha_archive::check(THD* thd, HA_CHECK_OPT* check_opt)
/* Flush any waiting data */
gzflush
(
share
->
archive_write
,
Z_SYNC_FLUSH
);
/*
First we create a buffer that we can use for reading rows, and can pass
to get_row().
*/
if
(
!
(
buf
=
(
byte
*
)
my_malloc
(
table
->
s
->
reclength
,
MYF
(
MY_WME
))))
rc
=
HA_ERR_OUT_OF_MEM
;
/*
Now we will rewind the archive file so that we are positioned at the
start of the file.
*/
if
(
!
rc
)
read_data_header
(
archive
);
if
(
!
rc
)
while
(
!
(
rc
=
get_row
(
archive
,
buf
)))
count
--
;
my_free
((
char
*
)
buf
,
MYF
(
0
));
read_data_header
(
archive
);
while
(
!
(
rc
=
get_row
(
archive
,
table
->
record
[
0
])))
count
--
;
thd
->
proc_info
=
old_proc_info
;
...
...
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