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
d57143aa
Commit
d57143aa
authored
Mar 06, 2007
by
tsmith@siva.hindu.god
Browse files
Options
Browse Files
Download
Plain Diff
Merge tsmith@bk-internal.mysql.com:/home/bk/mysql-5.0-maint
into siva.hindu.god:/home/tsmith/m/bk/maint/50
parents
34b08b17
369bbd92
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
libmysql/libmysql.c
libmysql/libmysql.c
+1
-1
sql/sql_class.cc
sql/sql_class.cc
+2
-0
No files found.
libmysql/libmysql.c
View file @
d57143aa
...
...
@@ -1367,7 +1367,7 @@ mysql_stat(MYSQL *mysql)
{
DBUG_ENTER
(
"mysql_stat"
);
if
(
simple_command
(
mysql
,
COM_STATISTICS
,
0
,
0
,
0
))
return
mysql
->
net
.
last_error
;
DBUG_RETURN
(
mysql
->
net
.
last_error
)
;
DBUG_RETURN
((
*
mysql
->
methods
->
read_statistics
)(
mysql
));
}
...
...
sql/sql_class.cc
View file @
d57143aa
...
...
@@ -226,7 +226,9 @@ THD::THD()
#endif
client_capabilities
=
0
;
// minimalistic client
net
.
last_error
[
0
]
=
0
;
// If error on boot
#ifdef HAVE_QUERY_CACHE
query_cache_init_query
(
&
net
);
// If error on boot
#endif
ull
=
0
;
system_thread
=
cleanup_done
=
abort_on_warning
=
no_warnings_for_error
=
0
;
peer_port
=
0
;
// For SHOW PROCESSLIST
...
...
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