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
bfc0d5ca
Commit
bfc0d5ca
authored
Feb 18, 2001
by
monty@donna.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed problem with concurrent inserts and read-previous
Fix for BSDI 4.0
parent
0ccc30f4
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
154 additions
and
21 deletions
+154
-21
Docs/manual.texi
Docs/manual.texi
+150
-17
configure.in
configure.in
+1
-1
myisam/mi_rprev.c
myisam/mi_rprev.c
+1
-1
mysys/mf_format.c
mysys/mf_format.c
+1
-1
sql/handler.cc
sql/handler.cc
+1
-1
No files found.
Docs/manual.texi
View file @
bfc0d5ca
This diff is collapsed.
Click to expand it.
configure.in
View file @
bfc0d5ca
...
...
@@ -746,7 +746,7 @@ case $SYSTEM_TYPE in
;;
*
bsdi
*
)
echo
"Adding fix for BSDI"
CFLAGS
=
"
$CFLAGS
-D__BSD__"
CFLAGS
=
"
$CFLAGS
-D__BSD__
-DHAVE_BROKEN_REALPATH
"
AC_DEFINE_UNQUOTED
(
SOCKOPT_OPTLEN_TYPE, size_t
)
;;
*
sgi-irix6
*
)
...
...
myisam/mi_rprev.c
View file @
bfc0d5ca
...
...
@@ -54,7 +54,7 @@ int mi_rprev(MI_INFO *info, byte *buf, int inx)
if
(
!
error
)
{
while
(
info
->
lastpos
>
info
->
state
->
data_file_length
)
while
(
info
->
lastpos
>
=
info
->
state
->
data_file_length
)
{
/* Skip rows that are inserted by other threads since we got a lock */
if
((
error
=
_mi_search_next
(
info
,
share
->
keyinfo
+
inx
,
info
->
lastkey
,
...
...
mysys/mf_format.c
View file @
bfc0d5ca
...
...
@@ -110,7 +110,7 @@ my_string fn_format(my_string to, const char *name, const char *dsk,
(
void
)
strmov
(
pos
,
ext
);
/* Don't convert extension */
}
/* Purify gives a lot of UMR errors when using realpath */
#if defined(HAVE_REALPATH) && !defined(HAVE_purify)
#if defined(HAVE_REALPATH) && !defined(HAVE_purify)
&& !defined(HAVE_BROKEN_REALPATH)
if
(
flag
&
16
)
{
struct
stat
stat_buff
;
...
...
sql/handler.cc
View file @
bfc0d5ca
...
...
@@ -112,7 +112,7 @@ handler *get_new_handler(TABLE *table, enum db_type db_type)
return
new
ha_berkeley
(
table
);
#endif
#ifdef HAVE_INNOBASE_DB
case
DB_TYPE_INNOBASE
_DB
:
case
DB_TYPE_INNOBASE
:
return
new
ha_innobase
(
table
);
#endif
case
DB_TYPE_HEAP
:
...
...
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