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
076fc1a6
Commit
076fc1a6
authored
Jun 22, 2002
by
serg@serg.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
myrg_open.c:
comment fixed, bad flag hack removed
parent
5a54f862
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
myisammrg/myrg_open.c
myisammrg/myrg_open.c
+4
-4
No files found.
myisammrg/myrg_open.c
View file @
076fc1a6
...
...
@@ -23,10 +23,10 @@
#include "mrg_static.c"
#endif
/*
/*
open a MyISAM MERGE table
if handle_locking is 0 then exit with error if some
databas
e is locked
if handle_locking is 1 then wait if
databas
e is locked
if handle_locking is 0 then exit with error if some
tabl
e is locked
if handle_locking is 1 then wait if
tabl
e is locked
*/
...
...
@@ -78,7 +78,7 @@ MYRG_INFO *myrg_open(const char *name, int mode, int handle_locking)
sizeof
(
name_buff
)
-
1
-
dir_length
));
VOID
(
cleanup_dirname
(
buff
,
name_buff
));
}
if
(
!
(
isam
=
mi_open
(
buff
,
mode
,
test
(
handle_locking
))))
if
(
!
(
isam
=
mi_open
(
buff
,
mode
,
(
handle_locking
?
HA_OPEN_WAIT_IF_LOCKED
:
0
))))
goto
err
;
files
++
;
last_isam
=
isam
;
...
...
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