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
11322bfa
Commit
11322bfa
authored
Jan 31, 2007
by
svoj@mysql.com/june.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
After merge fix (WL#3567).
parent
a28b2ca1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
sql/ha_myisam.cc
sql/ha_myisam.cc
+2
-1
sql/ha_myisammrg.cc
sql/ha_myisammrg.cc
+1
-1
No files found.
sql/ha_myisam.cc
View file @
11322bfa
...
...
@@ -1728,12 +1728,13 @@ int ha_myisam::create(const char *name, register TABLE *table_arg,
HA_CREATE_INFO
*
info
)
{
int
error
;
uint
create_flags
=
0
,
options
=
table_arg
->
db_options_in_use
,
records
;
uint
create_flags
=
0
,
records
;
char
buff
[
FN_REFLEN
];
MI_KEYDEF
*
keydef
;
MI_COLUMNDEF
*
recinfo
;
MI_CREATE_INFO
create_info
;
TABLE_SHARE
*
share
=
table
->
s
;
uint
options
=
share
->
db_options_in_use
;
DBUG_ENTER
(
"ha_myisam::create"
);
if
((
error
=
table2myisam
(
table_arg
,
&
keydef
,
&
recinfo
,
&
records
)))
DBUG_RETURN
(
error
);
/* purecov: inspected */
...
...
sql/ha_myisammrg.cc
View file @
11322bfa
...
...
@@ -97,7 +97,7 @@ int ha_myisammrg::open(const char *name, int mode, uint test_if_locked)
MI_COLUMNDEF
*
recinfo
;
MYRG_TABLE
*
u_table
;
uint
recs
;
uint
keys
=
table
->
keys
;
uint
keys
=
table
->
s
->
keys
;
int
error
;
char
name_buff
[
FN_REFLEN
];
...
...
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