mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 03:17:20 +02:00
Fixed wrong printf() string in InnoDB
Removed some compiler warnings regarding 'static' from InnoDB Docs/manual.texi: Fixed wrong manual entry innobase/btr/btr0cur.c: Fixed wrong printf() string innobase/include/univ.i: Removed compiler warnings (static inline produces a lot of warnings and is probably not portable)
This commit is contained in:
parent
3af8f85f82
commit
e2cf3f8e45
3 changed files with 3 additions and 3 deletions
|
|
@ -46937,7 +46937,7 @@ Don't write slave-timeout reconnects to the error log.
|
||||||
@item
|
@item
|
||||||
Fixed bug with slave net read timeouting
|
Fixed bug with slave net read timeouting
|
||||||
@item
|
@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
|
@item
|
||||||
Fixed bug in @code{ALTER TABLE} with BDB tables.
|
Fixed bug in @code{ALTER TABLE} with BDB tables.
|
||||||
@item
|
@item
|
||||||
|
|
|
||||||
|
|
@ -808,7 +808,7 @@ btr_cur_optimistic_insert(
|
||||||
|
|
||||||
if (!dtuple_check_typed_no_assert(entry)) {
|
if (!dtuple_check_typed_no_assert(entry)) {
|
||||||
fprintf(stderr,
|
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);
|
index->table_name, index->name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -116,7 +116,7 @@ memory is read outside the allocated blocks. */
|
||||||
#define UNIV_INLINE extern inline
|
#define UNIV_INLINE extern inline
|
||||||
#else
|
#else
|
||||||
/* extern inline doesn't work with gcc 3.0.2 */
|
/* extern inline doesn't work with gcc 3.0.2 */
|
||||||
#define UNIV_INLINE static inline
|
#define UNIV_INLINE inline
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue