List:Commits« Previous MessageNext Message »
From:holyfoot Date:June 28 2007 8:34am
Subject:bk commit into 5.1 tree (holyfoot:1.2519)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of hf. When hf does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet@stripped, 2007-06-28 13:34:39+05:00, holyfoot@stripped +2 -0
  events_bugs.test didn't remove all the objects it created
  what caused some consequitive tests failures

  mysql-test/r/events_bugs.result@stripped, 2007-06-28 13:34:36+05:00, holyfoot@stripped +3 -1
    test result fixed

  mysql-test/t/events_bugs.test@stripped, 2007-06-28 13:34:36+05:00, holyfoot@stripped +2 -1
    typo fixed, event removed

diff -Nrup a/mysql-test/r/events_bugs.result b/mysql-test/r/events_bugs.result
--- a/mysql-test/r/events_bugs.result	2007-06-27 11:06:35 +05:00
+++ b/mysql-test/r/events_bugs.result	2007-06-28 13:34:36 +05:00
@@ -571,10 +571,11 @@ CREATE USER evtest1@localhost;
 SET PASSWORD FOR evtest1@localhost = password('ev1');
 REVOKE ALL PRIVILEGES, GRANT OPTION FROM evtest1@localhost;
 GRANT create, insert, select, event ON events_test.* TO evtest1@localhost;
-GRANT select,insert ON TEST.* TO evtest1@lcalhost;
+GRANT select,insert ON TEST.* TO evtest1@localhost;
 SHOW GRANTS FOR evtest1@localhost;
 Grants for evtest1@localhost
 GRANT USAGE ON *.* TO 'evtest1'@'localhost' IDENTIFIED BY PASSWORD '*3170F3644E31580C25DE4A08F4C07CC9A2D40C32'
+GRANT SELECT, INSERT ON `TEST`.* TO 'evtest1'@'localhost'
 GRANT SELECT, INSERT, CREATE, EVENT ON `events_test`.* TO 'evtest1'@'localhost'
 connection e1;
 USE events_test;
@@ -591,6 +592,7 @@ INSERT INTO test.event_log VALUES (NULL,
 ROLLBACK;
 END;|
 connection default;
+DROP EVENT ev_sched_1823;
 DROP USER evtest1@localhost;
 USE test;
 =====================================================================================
diff -Nrup a/mysql-test/t/events_bugs.test b/mysql-test/t/events_bugs.test
--- a/mysql-test/t/events_bugs.test	2007-06-27 11:06:35 +05:00
+++ b/mysql-test/t/events_bugs.test	2007-06-28 13:34:36 +05:00
@@ -668,7 +668,7 @@ CREATE USER evtest1@localhost;
 SET PASSWORD FOR evtest1@localhost = password('ev1');
 REVOKE ALL PRIVILEGES, GRANT OPTION FROM evtest1@localhost;
 GRANT create, insert, select, event ON events_test.* TO evtest1@localhost;
-GRANT select,insert ON TEST.* TO evtest1@lcalhost;
+GRANT select,insert ON TEST.* TO evtest1@localhost;
 SHOW GRANTS FOR evtest1@localhost;
 
 --echo connection e1;
@@ -693,6 +693,7 @@ DELIMITER ;|
 
 --sleep 6
 --echo connection default;
+DROP EVENT ev_sched_1823;
 connection default;
 DROP USER evtest1@localhost;
 
Thread
bk commit into 5.1 tree (holyfoot:1.2519)holyfoot28 Jun