mariadb/mysql-test
Dmitry Lenev e960abc7cf Fix for bug#36544 "DROP USER does not remove stored function
privileges".

The first problem was that DROP USER didn't properly remove privileges 
on stored functions from in-memory structures. So the dropped user
could have called stored functions on which he had privileges before
being dropped while his connection was still around.
Even worse if a new user with the same name was created he would
inherit privileges on stored functions from the dropped user.
Similar thing happened with old user name and function privileges
during RENAME USER.

This problem stemmed from the fact that the handle_grant_data() function
which handled DROP/RENAME USER didn't take any measures to update
in-memory hash with information about function privileges after
updating them on disk.

This patch solves this problem by adding code doing just that.

The second problem was that RENAME USER didn't properly update in-memory
structures describing table-level privileges and privileges on stored 
procedures. As result such privileges could have been lost after a rename
(i.e. not associated with the new name of user) and inherited by a new
user with the same name as the old name of the original user.

This problem was caused by code handling RENAME USER in
handle_grant_struct() which [sic!]:
a) tried to update wrong (tables) hash when updating stored procedure
   privileges for new user name.
b) passed wrong arguments to function performing the hash update and
   didn't take into account the way in which such update could have
   changed the order of the hash elements.

This patch solves this problem by ensuring that a) the correct hash
is updated, b) correct arguments are used for the hash_update()
function and c) we take into account possible changes in the order
of hash elements.
2011-02-07 14:01:19 +03:00
..
collections Fixed bteam issue #37235: 5.0 trees now will work correctly in pb2 and 2010-11-29 17:33:24 +02:00
include Post fix for bug#45520 2009-12-10 11:44:19 +08:00
lib - Added/updated copyright headers 2010-12-28 19:57:23 +01:00
misc - Added/updated copyright headers 2010-12-28 19:57:23 +01:00
ndb - Added/updated copyright headers 2010-12-28 19:57:23 +01:00
r Fix for bug#36544 "DROP USER does not remove stored function 2011-02-07 14:01:19 +03:00
std_data Bug #50642 : ssl certs in test suite are expiring soon. 2010-01-29 15:55:46 +02:00
suite Fix for bug#36544 "DROP USER does not remove stored function 2011-02-07 14:01:19 +03:00
t Fix for bug#36544 "DROP USER does not remove stored function 2011-02-07 14:01:19 +03:00
create-test-result - Added/updated copyright headers 2010-12-28 19:57:23 +01:00
fix-result - Added/updated copyright headers 2010-12-28 19:57:23 +01:00
install_test_db.sh
Makefile.am - Added/updated copyright headers 2010-12-28 19:57:23 +01:00
mysql-stress-test.pl - Added/updated copyright headers 2010-12-28 19:57:23 +01:00
mysql-test-run-shell.sh Bug #47811 : remove the non-default alignment specification. 2011-01-26 15:49:09 +03:00
mysql-test-run.pl Bug #47811 : remove the non-default alignment specification. 2011-01-26 15:49:09 +03:00
purify.supp - Added/updated copyright headers 2010-12-28 19:57:23 +01:00
README
README.gcov
README.stress
resolve-stack - Added/updated copyright headers 2010-12-28 19:57:23 +01:00
valgrind.supp - Added/updated copyright headers 2010-12-28 19:57:23 +01:00

This directory contains a test suite for the MySQL daemon. To run
the currently existing test cases, simply execute ./mysql-test-run in
this directory. It will fire up the newly built mysqld and test it.

Note that you do not have to have to do "make install", and you could
actually have a co-existing MySQL installation. The tests will not
conflict with it.

All tests must pass. If one or more of them fail on your system, please
read the following manual section for instructions on how to report the
problem:

http://dev.mysql.com/doc/mysql/en/mysql-test-suite.html

If you want to use an already running MySQL server for specific tests,
use the --extern option to mysql-test-run. Please note that in this mode,
the test suite expects you to provide the names of the tests to run.
For example, here is the command to run the "alias" and "analyze" tests
with an external server:

mysql-test-run --extern alias analyze

To match your setup, you might also need to provide --socket, --user, and
other relevant options.

With no test cases named on the command line, mysql-test-run falls back
to the normal "non-extern" behavior. The reason for this is that some
tests cannot run with an external server.


You can create your own test cases. To create a test case, create a new
file in the t subdirectory using a text editor. The file should have a .test
extension. For example:

 xemacs t/test_case_name.test

 In the file, put a set of SQL statements that create some tables,
 load test data, and run some queries to manipulate it.

 We would appreciate it if you name your test tables t1, t2, t3 ... (to not
 conflict too much with existing tables).

 Your test should begin by dropping the tables you are going to create and
 end by dropping them again.  This ensures that you can run the test over
 and over again.
 
 If you are using mysqltest commands (like result file names) in your
 test case, you should create the result file as follows:

 mysql-test-run --record test_case_name

 or

 mysqltest --record < t/test_case_name.test

 If you only have a simple test cases consisting of SQL statements and
 comments, you can create the test case in one of the following ways:

 mysql-test-run --record test_case_name

 mysql test < t/test_case_name.test > r/test_case_name.result

 mysqltest --record --record-file=r/test_case_name.result < t/test_case_name.test

 When this is done, take a look at r/test_case_name.result
 - If the result is incorrect, you have found a bug. In this case, you should
   edit the test result to the correct results so that we can verify
   that the bug is corrected in future releases.

To submit your test case, put your .test file and .result file(s) into
a tar.gz archive, add a README that explains the problem, ftp the 
archive to ftp://support.mysql.com/pub/mysql/secret/ and send a mail
to bugs@lists.mysql.com