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
a24f5374
Commit
a24f5374
authored
May 06, 2006
by
ingo@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/mydev/mysql-4.0
into mysql.com:/home/mydev/mysql-4.0-bug10405
parents
2842d28d
d1e25f97
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
9 deletions
+17
-9
myisam/mi_check.c
myisam/mi_check.c
+17
-9
No files found.
myisam/mi_check.c
View file @
a24f5374
...
...
@@ -3415,6 +3415,7 @@ int recreate_table(MI_CHECK *param, MI_INFO **org_info, char *filename)
ha_rows
max_records
;
ulonglong
file_length
,
tmp_length
;
MI_CREATE_INFO
create_info
;
DBUG_ENTER
(
"recreate_table"
);
error
=
1
;
/* Default error */
info
=
**
org_info
;
...
...
@@ -3424,7 +3425,7 @@ int recreate_table(MI_CHECK *param, MI_INFO **org_info, char *filename)
unpack
=
(
share
.
options
&
HA_OPTION_COMPRESS_RECORD
)
&&
(
param
->
testflag
&
T_UNPACK
);
if
(
!
(
keyinfo
=
(
MI_KEYDEF
*
)
my_alloca
(
sizeof
(
MI_KEYDEF
)
*
share
.
base
.
keys
)))
return
0
;
DBUG_RETURN
(
0
)
;
memcpy
((
byte
*
)
keyinfo
,(
byte
*
)
share
.
keyinfo
,
(
size_t
)
(
sizeof
(
MI_KEYDEF
)
*
share
.
base
.
keys
));
...
...
@@ -3433,14 +3434,14 @@ int recreate_table(MI_CHECK *param, MI_INFO **org_info, char *filename)
(
key_parts
+
share
.
base
.
keys
))))
{
my_afree
((
gptr
)
keyinfo
);
return
1
;
DBUG_RETURN
(
1
)
;
}
if
(
!
(
recdef
=
(
MI_COLUMNDEF
*
)
my_alloca
(
sizeof
(
MI_COLUMNDEF
)
*
(
share
.
base
.
fields
+
1
))))
{
my_afree
((
gptr
)
keyinfo
);
my_afree
((
gptr
)
keysegs
);
return
1
;
DBUG_RETURN
(
1
)
;
}
if
(
!
(
uniquedef
=
(
MI_UNIQUEDEF
*
)
my_alloca
(
sizeof
(
MI_UNIQUEDEF
)
*
(
share
.
state
.
header
.
uniques
+
1
))))
...
...
@@ -3448,7 +3449,7 @@ int recreate_table(MI_CHECK *param, MI_INFO **org_info, char *filename)
my_afree
((
gptr
)
recdef
);
my_afree
((
gptr
)
keyinfo
);
my_afree
((
gptr
)
keysegs
);
return
1
;
DBUG_RETURN
(
1
)
;
}
/* Copy the column definitions */
...
...
@@ -3521,6 +3522,11 @@ int recreate_table(MI_CHECK *param, MI_INFO **org_info, char *filename)
create_info
.
language
=
(
param
->
language
?
param
->
language
:
share
.
state
.
header
.
language
);
create_info
.
key_file_length
=
status_info
.
key_file_length
;
/*
Allow for creating an auto_increment key. This has an effect only if
an auto_increment key exists in the original table.
*/
create_info
.
with_auto_increment
=
TRUE
;
/* We don't have to handle symlinks here because we are using
HA_DONT_TOUCH_DATA */
if
(
mi_create
(
filename
,
...
...
@@ -3565,7 +3571,7 @@ end:
my_afree
((
gptr
)
keyinfo
);
my_afree
((
gptr
)
recdef
);
my_afree
((
gptr
)
keysegs
);
return
error
;
DBUG_RETURN
(
error
)
;
}
...
...
@@ -3668,6 +3674,8 @@ void update_auto_increment_key(MI_CHECK *param, MI_INFO *info,
my_bool
repair_only
)
{
byte
*
record
;
DBUG_ENTER
(
"update_auto_increment_key"
);
if
(
!
info
->
s
->
base
.
auto_key
||
!
(((
ulonglong
)
1
<<
(
info
->
s
->
base
.
auto_key
-
1
)
&
info
->
s
->
state
.
key_map
)))
...
...
@@ -3676,7 +3684,7 @@ void update_auto_increment_key(MI_CHECK *param, MI_INFO *info,
mi_check_print_info
(
param
,
"Table: %s doesn't have an auto increment key
\n
"
,
param
->
isam_file_name
);
return
;
DBUG_VOID_RETURN
;
}
if
(
!
(
param
->
testflag
&
T_SILENT
)
&&
!
(
param
->
testflag
&
T_REP
))
...
...
@@ -3689,7 +3697,7 @@ void update_auto_increment_key(MI_CHECK *param, MI_INFO *info,
MYF
(
0
))))
{
mi_check_print_error
(
param
,
"Not enough memory for extra record"
);
return
;
DBUG_VOID_RETURN
;
}
mi_extra
(
info
,
HA_EXTRA_KEYREAD
,
0
);
...
...
@@ -3700,7 +3708,7 @@ void update_auto_increment_key(MI_CHECK *param, MI_INFO *info,
mi_extra
(
info
,
HA_EXTRA_NO_KEYREAD
,
0
);
my_free
((
char
*
)
record
,
MYF
(
0
));
mi_check_print_error
(
param
,
"%d when reading last record"
,
my_errno
);
return
;
DBUG_VOID_RETURN
;
}
if
(
!
repair_only
)
info
->
s
->
state
.
auto_increment
=
param
->
auto_increment_value
;
...
...
@@ -3716,7 +3724,7 @@ void update_auto_increment_key(MI_CHECK *param, MI_INFO *info,
mi_extra
(
info
,
HA_EXTRA_NO_KEYREAD
,
0
);
my_free
((
char
*
)
record
,
MYF
(
0
));
update_state_info
(
param
,
info
,
UPDATE_AUTO_INC
);
return
;
DBUG_VOID_RETURN
;
}
/* calculate unique keys for each part key */
...
...
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