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
6899a4e3
Commit
6899a4e3
authored
Jul 31, 2002
by
monty@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed wrong printf() string in InnoDB
Removed some compiler warnings regarding 'static' from InnoDB
parent
4a88835a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
Docs/manual.texi
Docs/manual.texi
+1
-1
innobase/btr/btr0cur.c
innobase/btr/btr0cur.c
+1
-1
innobase/include/univ.i
innobase/include/univ.i
+1
-1
No files found.
Docs/manual.texi
View file @
6899a4e3
...
...
@@ -46937,7 +46937,7 @@ Don't write slave-timeout reconnects to the error log.
@item
Fixed bug with slave net read timeouting
@item
Fixed a core-dump bug with @code{MERGE
]
tables and @code{MAX()} function.
Fixed a core-dump bug with @code{MERGE
}
tables and @code{MAX()} function.
@item
Fixed bug in @code{ALTER TABLE} with BDB tables.
@item
innobase/btr/btr0cur.c
View file @
6899a4e3
...
...
@@ -808,7 +808,7 @@ btr_cur_optimistic_insert(
if
(
!
dtuple_check_typed_no_assert
(
entry
))
{
fprintf
(
stderr
,
"InnoDB: Error in a tuple to insert into table %
lu index %lu
\n
"
,
"InnoDB: Error in a tuple to insert into table %
s index %s
\n
"
,
index
->
table_name
,
index
->
name
);
}
...
...
innobase/include/univ.i
View file @
6899a4e3
...
...
@@ -116,7 +116,7 @@ memory is read outside the allocated blocks. */
#
define
UNIV_INLINE
extern
inline
#
else
/* extern inline doesn't work with gcc 3.0.2 */
#
define
UNIV_INLINE
static
inline
#
define
UNIV_INLINE
inline
#
endif
#
endif
...
...
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