diff options
author | unknown <kostja@bodhi.(none)> | 2007-11-22 14:58:58 +0300 |
---|---|---|
committer | unknown <kostja@bodhi.(none)> | 2007-11-22 14:58:58 +0300 |
commit | 9e1d7d7e891554772f94e72fc96a54b47f05af75 (patch) | |
tree | 8d232b9eb8b86e5104ee2f9ed95ae87682309578 /mysql-test/t/skip_grants.test | |
parent | 01900080958d8209617d76d3c5f770008c7c94ff (diff) | |
parent | 6f9dfaa4b1efa5e5f0780429dcd2fb0663476d3c (diff) | |
download | mariadb-git-9e1d7d7e891554772f94e72fc96a54b47f05af75.tar.gz |
Merge bk-internal.mysql.com:/home/bk/mysql-5.1-runtime
into bodhi.(none):/opt/local/work/mysql-5.1-runtime
mysql-test/r/skip_grants.result:
Manual merge.
mysql-test/t/skip_grants.test:
Manual merge.
Diffstat (limited to 'mysql-test/t/skip_grants.test')
-rw-r--r-- | mysql-test/t/skip_grants.test | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/mysql-test/t/skip_grants.test b/mysql-test/t/skip_grants.test index 018366f705f..72a073ac541 100644 --- a/mysql-test/t/skip_grants.test +++ b/mysql-test/t/skip_grants.test @@ -122,7 +122,6 @@ select count(*) from information_schema.COLUMN_PRIVILEGES; select count(*) from information_schema.SCHEMA_PRIVILEGES; select count(*) from information_schema.TABLE_PRIVILEGES; select count(*) from information_schema.USER_PRIVILEGES; - # # Bug #32020: loading udfs while --skip-grant-tables is enabled causes out of # memory errors @@ -134,3 +133,12 @@ CREATE FUNCTION a RETURNS STRING SONAME ''; DROP FUNCTION a; --echo End of 5.0 tests + +--echo # +--echo # Bug#29817 Queries with UDF fail with non-descriptive error +--echo # if mysql.proc is missing +--echo # +--error ER_SP_DOES_NOT_EXIST +select no_such_function(1); + +--echo End of 5.1 tests |