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
e7086787
Commit
e7086787
authored
Sep 07, 2006
by
rburnett@bk-internal.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/data0/bk/mysql-5.1
into bk-internal.mysql.com:/data0/bk/mysql-5.1-kt
parents
1ac47c95
926d98d9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
1 deletion
+10
-1
libmysqld/libmysqld.def
libmysqld/libmysqld.def
+1
-0
mysql-test/t/handler.test
mysql-test/t/handler.test
+1
-0
sql/log.cc
sql/log.cc
+8
-1
No files found.
libmysqld/libmysqld.def
View file @
e7086787
...
...
@@ -164,3 +164,4 @@ EXPORTS
my_charset_bin
my_charset_same
modify_defaults_file
mysql_set_server_option
mysql-test/t/handler.test
View file @
e7086787
--
source
include
/
not_embedded
.
inc
#
# test of HANDLER ...
#
...
...
sql/log.cc
View file @
e7086787
...
...
@@ -3968,7 +3968,13 @@ void print_buffer_to_nt_eventlog(enum loglevel level, char *buff,
return an error (e.g. logging to the log tables)
*/
int
vprint_msg_to_log
(
enum
loglevel
level
,
const
char
*
format
,
va_list
args
)
#ifdef EMBEDDED_LIBRARY
void
vprint_msg_to_log
(
enum
loglevel
level
__attribute__
((
unused
)),
const
char
*
format
__attribute__
((
unused
)),
va_list
argsi
__attribute__
((
unused
)))
{}
#else
/*!EMBEDDED_LIBRARY*/
void
vprint_msg_to_log
(
enum
loglevel
level
,
const
char
*
format
,
va_list
args
)
{
char
buff
[
1024
];
uint
length
;
...
...
@@ -3984,6 +3990,7 @@ int vprint_msg_to_log(enum loglevel level, const char *format, va_list args)
DBUG_RETURN
(
0
);
}
#endif
/*EMBEDDED_LIBRARY*/
void
sql_print_error
(
const
char
*
format
,
...)
...
...
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