~ubuntu-branches/ubuntu/gutsy/mysql-dfsg-5.0/gutsy

« back to all changes in this revision

Viewing changes to mysql-test/r/sp-security.result

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2007-04-03 09:43:01 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20070403094301-fnjhfr59hu72pvtg
Tags: 5.0.38-0ubuntu1
* Package the Enterprise version again (.37 was a community version), since
  Debian and we have always done so. This brings in a few more bug fixes and
  makes functional derivations less likely.
* debian/README.Maintainer: Add pointer to upstream download URL, since it
  is very hard to find the Enterprise versions.
* Disable 33_scripts__mysql_create_system_tables__no_test.dpatch, since that
  script was removed upstream.
* debian/patches/41_scripts__mysql_install_db.sh__no_test.dpatch: Adapted to
  changed formatting in new upstream version.
* Remove debian/patches/86_PATH_MAX.dpatch, fixed upstream.
* Add debian/patches/90_org_tables_definition.dpatch: Fix local variable
  declaration in libmysqld/sql_parse.cc to fix compilation with
  EMBEDDED_LIBRARY.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
select * from db1_secret.t1;
46
46
ERROR 42000: SELECT command denied to user ''@'localhost' for table 't1'
47
47
create procedure db1_secret.dummy() begin end;
48
 
ERROR 42000: Access denied for user ''@'localhost' to database 'db1_secret'
 
48
ERROR 42000: Access denied for user ''@'%' to database 'db1_secret'
49
49
drop procedure db1_secret.dummy;
50
50
ERROR 42000: PROCEDURE db1_secret.dummy does not exist
51
51
select * from t1;
76
76
select db1_secret.db();
77
77
ERROR 42000: Access denied for user 'user1'@'localhost' to database 'db1_secret'
78
78
call db1_secret.stamp(6);
79
 
ERROR 42000: Access denied for user ''@'localhost' to database 'db1_secret'
 
79
ERROR 42000: Access denied for user ''@'%' to database 'db1_secret'
80
80
select db1_secret.db();
81
 
ERROR 42000: Access denied for user ''@'localhost' to database 'db1_secret'
 
81
ERROR 42000: Access denied for user ''@'%' to database 'db1_secret'
82
82
drop database if exists db2;
83
83
create database db2;
84
84
use db2;