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
e7263062
Commit
e7263062
authored
Aug 21, 2013
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql-5.1 to working copy.
parents
ec2389dc
3b1e98d2
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
41 additions
and
16 deletions
+41
-16
mysql-test/include/have_valgrind.inc
mysql-test/include/have_valgrind.inc
+11
-0
sql/sql_class.h
sql/sql_class.h
+8
-1
sql/sql_db.cc
sql/sql_db.cc
+6
-4
sql/sql_parse.cc
sql/sql_parse.cc
+2
-0
sql/sql_show.cc
sql/sql_show.cc
+14
-11
No files found.
mysql-test/include/have_valgrind.inc
0 → 100644
View file @
e7263062
# include/have_valgrind.inc
#
# If some test should be run with only valgrind then skip it while running test
# without it.
#
if
(
!
$VALGRIND_TEST
)
{
--
skip
Need
"--valgrind"
}
sql/sql_class.h
View file @
e7263062
/*
Copyright (c) 2000, 201
2
, Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2000, 201
3
, Oracle and/or its affiliates. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
...
...
@@ -2284,6 +2284,12 @@ public:
*/
bool
set_db
(
const
char
*
new_db
,
size_t
new_db_len
)
{
/*
Acquiring mutex LOCK_thd_data as we either free the memory allocated
for the database and reallocate the memory for the new db or memcpy
the new_db to the db.
*/
pthread_mutex_lock
(
&
LOCK_thd_data
);
/* Do not reallocate memory if current chunk is big enough. */
if
(
db
&&
new_db
&&
db_length
>=
new_db_len
)
memcpy
(
db
,
new_db
,
new_db_len
+
1
);
...
...
@@ -2293,6 +2299,7 @@ public:
db
=
new_db
?
my_strndup
(
new_db
,
new_db_len
,
MYF
(
MY_WME
))
:
NULL
;
}
db_length
=
db
?
new_db_len
:
0
;
pthread_mutex_unlock
(
&
LOCK_thd_data
);
return
new_db
&&
!
db
;
}
...
...
sql/sql_db.cc
View file @
e7263062
/*
Copyright (c) 2000, 201
2
, Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2000, 201
3
, Oracle and/or its affiliates. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
...
...
@@ -1469,10 +1469,12 @@ static void mysql_change_db_impl(THD *thd,
we just call THD::reset_db(). Since THD::reset_db() does not releases
the previous database name, we should do it explicitly.
*/
x_free
(
thd
->
db
);
pthread_mutex_lock
(
&
thd
->
LOCK_thd_data
);
if
(
thd
->
db
)
x_free
(
thd
->
db
);
DEBUG_SYNC
(
thd
,
"after_freeing_thd_db"
);
thd
->
reset_db
(
new_db_name
->
str
,
new_db_name
->
length
);
pthread_mutex_unlock
(
&
thd
->
LOCK_thd_data
);
}
/* 2. Update security context. */
...
...
sql/sql_parse.cc
View file @
e7263062
...
...
@@ -1231,7 +1231,9 @@ bool dispatch_command(enum enum_server_command command, THD *thd,
if
(
save_user_connect
)
decrease_user_connections
(
save_user_connect
);
#endif
/* NO_EMBEDDED_ACCESS_CHECKS */
pthread_mutex_lock
(
&
thd
->
LOCK_thd_data
);
x_free
(
save_db
);
pthread_mutex_unlock
(
&
thd
->
LOCK_thd_data
);
x_free
(
save_security_ctx
.
user
);
}
break
;
...
...
sql/sql_show.cc
View file @
e7263062
/* Copyright (c) 2000, 201
2
, Oracle and/or its affiliates. All rights reserved.
/* Copyright (c) 2000, 201
3
, Oracle and/or its affiliates. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
...
...
@@ -1847,8 +1847,6 @@ void mysqld_list_processes(THD *thd,const char *user, bool verbose)
thd_info
->
host
=
thd
->
strdup
(
tmp_sctx
->
host_or_ip
[
0
]
?
tmp_sctx
->
host_or_ip
:
tmp_sctx
->
host
?
tmp_sctx
->
host
:
""
);
if
((
thd_info
->
db
=
tmp
->
db
))
// Safe test
thd_info
->
db
=
thd
->
strdup
(
thd_info
->
db
);
thd_info
->
command
=
(
int
)
tmp
->
command
;
if
((
mysys_var
=
tmp
->
mysys_var
))
pthread_mutex_lock
(
&
mysys_var
->
mutex
);
...
...
@@ -1871,6 +1869,7 @@ void mysqld_list_processes(THD *thd,const char *user, bool verbose)
pthread_mutex_unlock
(
&
mysys_var
->
mutex
);
thd_info
->
start_time
=
tmp
->
start_time
;
thd_info
->
query
=
0
;
/* Lock THD mutex that protects its data when looking at it. */
pthread_mutex_lock
(
&
tmp
->
LOCK_thd_data
);
...
...
@@ -1879,7 +1878,11 @@ void mysqld_list_processes(THD *thd,const char *user, bool verbose)
uint
length
=
min
(
max_query_length
,
tmp
->
query_length
());
thd_info
->
query
=
(
char
*
)
thd
->
strmake
(
tmp
->
query
(),
length
);
}
if
((
thd_info
->
db
=
tmp
->
db
))
// Safe test
thd_info
->
db
=
thd
->
strdup
(
thd_info
->
db
);
pthread_mutex_unlock
(
&
tmp
->
LOCK_thd_data
);
thread_infos
.
append
(
thd_info
);
}
}
...
...
@@ -1934,7 +1937,7 @@ int fill_schema_processlist(THD* thd, TABLE_LIST* tables, COND* cond)
{
Security_context
*
tmp_sctx
=
tmp
->
security_ctx
;
struct
st_my_thread_var
*
mysys_var
;
const
char
*
val
;
const
char
*
val
,
*
db
;
if
((
!
tmp
->
vio_ok
()
&&
!
tmp
->
system_thread
)
||
(
user
&&
(
!
tmp_sctx
->
user
||
strcmp
(
tmp_sctx
->
user
,
user
))))
...
...
@@ -1959,13 +1962,6 @@ int fill_schema_processlist(THD* thd, TABLE_LIST* tables, COND* cond)
else
table
->
field
[
2
]
->
store
(
tmp_sctx
->
host_or_ip
,
strlen
(
tmp_sctx
->
host_or_ip
),
cs
);
/* DB */
if
(
tmp
->
db
)
{
table
->
field
[
3
]
->
store
(
tmp
->
db
,
strlen
(
tmp
->
db
),
cs
);
table
->
field
[
3
]
->
set_notnull
();
}
if
((
mysys_var
=
tmp
->
mysys_var
))
pthread_mutex_lock
(
&
mysys_var
->
mutex
);
/* COMMAND */
...
...
@@ -2011,6 +2007,13 @@ int fill_schema_processlist(THD* thd, TABLE_LIST* tables, COND* cond)
tmp
->
query_length
()),
cs
);
table
->
field
[
7
]
->
set_notnull
();
}
/* DB */
if
((
db
=
tmp
->
db
))
{
table
->
field
[
3
]
->
store
(
db
,
strlen
(
db
),
cs
);
table
->
field
[
3
]
->
set_notnull
();
}
pthread_mutex_unlock
(
&
tmp
->
LOCK_thd_data
);
if
(
schema_table_store_record
(
thd
,
table
))
...
...
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