- 19 Aug, 2013 1 commit
-
-
James Cammarata committed
-
- 13 Aug, 2013 4 commits
-
-
James Cammarata committed
-
James Cammarata committed
-
Ben Podoll committed
-
Ben Podoll committed
-
- 12 Aug, 2013 1 commit
-
-
Ben Podoll committed
-
- 11 Aug, 2013 1 commit
-
-
As of now, the documentation lists a parameter as "name", whereas the examples use a parameter called "db". This brings them in line.
Dan Robinson committed
-
- 29 Jul, 2013 1 commit
-
-
Stoned Elipot committed
-
- 23 Jul, 2013 1 commit
-
-
When revoking privileges from a user, the GRANT OPTION is always revoked, even if the user doesn't have it. If the user exists, this doesn't give an error, but if the user doesn't exist, it does: mysql> GRANT ALL ON test.* TO 'test'@'localhost'; Query OK, 0 rows affected (0.00 sec) mysql> REVOKE GRANT OPTION ON test.* FROM 'test'@'localhost'; Query OK, 0 rows affected (0.00 sec) mysql> REVOKE GRANT OPTION ON test.* FROM 'test'@'localhost'; Query OK, 0 rows affected (0.00 sec) mysql> REVOKE ALL ON test.* FROM 'test'@'localhost'; Query OK, 0 rows affected (0.00 sec) mysql> REVOKE GRANT OPTION ON test.* FROM 'test'@'localhost'; ERROR 1141 (42000): There is no such grant defined for user 'test' on host 'localhost' Additionally, in MySQL 5.6 this breaks replication because of http://bugs.mysql.com/bug.php?id=68892. Rather than revoking the GRANT OPTION and catching the error, check if the user actually has it and only revoke it when he does.
Stijn Tintel committed
-
- 20 Jul, 2013 2 commits
-
-
Xabier Larrakoetxea committed
-
Michael DeHaan committed
-
- 15 Jul, 2013 1 commit
-
-
Xabier Larrakoetxea committed
-
- 14 Jul, 2013 1 commit
-
-
Jan-Piet Mens committed
-
- 05 Jul, 2013 1 commit
-
-
Fixed #3433. Using get_bin_path, removed uneeded imports, "module" is inlined, misc other style improvements.
James Martin committed
-
- 01 Jul, 2013 1 commit
-
-
Andrew de Quincey committed
-
- 17 Jun, 2013 1 commit
-
-
Jan-Piet Mens committed
-
- 15 Jun, 2013 1 commit
-
-
Migrated all examples: in DOCUMENTATION=''' string to standalone EXAMPLES=''' string Added deprecation warning to moduledev.rst and remove deprecated example from it Fixed up a few typos and uppercased some acronyms. add consistency to how EXAMPLES are formatted
Jan-Piet Mens committed
-
- 11 Jun, 2013 1 commit
-
-
In MySQL 5.6, the root account created by default during MySQL installation has the PROXY ... WITH GRANT OPTION privilege for ''@'', that is, for all users. The mysql_user module tries to revoke this privilege, but this fails: _mysql_exceptions.ProgrammingError: (1064, "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '''@'' FROM 'root'@'localhost'' at line 1") Quick fix: don't revoke privilege if user is root and the privilege to revoke contains PROXY.
Stijn Tintel committed
-
- 10 Jun, 2013 1 commit
-
-
gw0 [http://gw.tnode.com/] committed
-
- 01 Jun, 2013 3 commits
-
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
- 27 May, 2013 2 commits
-
-
James Martin committed
-
for fetching riak stats.
James Martin committed
-
- 05 May, 2013 1 commit
-
-
James Martin committed
-
- 03 May, 2013 1 commit
-
-
Use psycopg2's mapping from PostgreSQL encoding names to Python codec names.
Bernhard Weitzhofer committed
-
- 28 Apr, 2013 1 commit
-
-
Michael DeHaan committed
-