- 20 May, 2014 1 commit
-
-
Mathieu Martin committed
-
- 14 May, 2014 1 commit
-
-
While the encrypted parameter's documentation clearly states that it needs to be set, if you are focused on the password parameter's documentation, there's nothing to draw your attention to the fact that encrypted may also need to be set.
Scott Sturdivant committed
-
- 06 May, 2014 1 commit
-
-
The previous sync_binary_log is not a real MySQL variable.
Adam Chainz committed
-
- 05 Apr, 2014 2 commits
-
-
Cove Schneider committed
-
Cove Schneider committed
-
- 01 Apr, 2014 2 commits
-
-
Matt Martz committed
-
The mysqldb Ansible module will fail if the state specified is import or dump with a '1045: Access Denied' mysql error for complex passwords. This is caused by the extra quote around the '--password' argument to mysqldump, as pipes.quotes already quotes the password string. >>> "--password='%s'" % pipes.quote('simple') "--password='simple'" >>> "--password='%s'" % pipes.quote('c0mplexp@ssword!') "--password=''c0mplexp@ssword!''" >>> "--password='%s'" % pipes.quote('password with space') "--password=''password with space''"
Chao Luan committed
-
- 19 Mar, 2014 1 commit
-
-
Michael DeHaan committed
-
- 16 Mar, 2014 1 commit
-
-
timeit shows a speedup of ~3x on Python 2.7.5 x86_64. It also makes the code a bit shorter.
Cristian Ciupitu committed
-
- 13 Mar, 2014 3 commits
-
-
Tests clean.
Richard C Isaacson committed -
Richard C Isaacson committed
-
Fixes odd encoding problem with wait_for_service.
James Martin committed
-
- 12 Mar, 2014 3 commits
-
-
Michael DeHaan committed
-
James Cammarata committed
-
Richard C Isaacson committed
-
- 10 Mar, 2014 3 commits
-
-
* Adds another module utility file which generalizes the access of urls via the urllib* libraries. * Adds a new spec generator for common arguments. * Makes the user-agent string configurable. Fixes #6211
James Cammarata committed -
* Adds another module utility file which generalizes the access of urls via the urllib* libraries. * Adds a new spec generator for common arguments. * Makes the user-agent string configurable. Fixes #6211
James Cammarata committed -
amree committed
-
- 06 Mar, 2014 2 commits
-
-
This is not supported in Python 2.6. Just use positional arguments.
Jimena Cabrera-Notari committed -
amree committed
-
- 26 Feb, 2014 1 commit
-
-
From the documentation it is not immediately clear that the 'target' option refers to a location on the remote host. This change emphasizes that. In addition to .sql files, .bz2 and .gz files are supported for dumps and restores. This is now documented.
Guido Kollerie committed
-
- 24 Feb, 2014 1 commit
-
-
Kyle Kelley committed
-
- 19 Feb, 2014 1 commit
-
-
James Martin committed
-
- 12 Feb, 2014 1 commit
-
-
The SET GLOBAL statement requires properly quoting of values. For example, the following correct queries will fail if quotes are toggled: mysql> SET GLOBAL innodb_lru_scan_depth = 2000; mysql> SET GLOBAL master_info_repository = "TABLE"; `mysql_variable` module doesn't quote the value argument, therefore string values will fail. # this task will pass, 2000 is passed without quotes - name: set a numeric value mysql_variable: variable=innodb_lru_scan_depth value=2000 # this task will fail, TABLE is passed without quotes - name: set a string value mysql_variable: variable=master_info_repository value=TABLE With this patch prepared statements are used. Proper quoting will be done automatically based on the type of the variables thus an attempt to convert to int, then to float is done in first place. Booleans values, ie: ON, OFF, are not specially handled because they can be quoted. For example, the following queries are correct and equivalent, they all set _innodb_file_per_table_ to logical _True_: mysql> SET GLOBAL innodb_file_per_table = "ON"; mysql> SET GLOBAL innodb_file_per_table = ON; mysql> SET GLOBAL innodb_file_per_table = 1; Tested in mysql 5.5 and 5.6.
Maykel Moya committed
-
- 07 Feb, 2014 1 commit
-
-
Arturs Vonda committed
-
- 04 Feb, 2014 1 commit
-
-
George Miroshnykov committed
-
- 03 Feb, 2014 2 commits
-
-
Matthew Jones committed
-
Timur Batyrshin committed
-
- 26 Jan, 2014 1 commit
-
-
Matthew Leventi committed
-
- 14 Jan, 2014 1 commit
-
-
David Busby committed
-
- 04 Jan, 2014 1 commit
-
-
Previously postgresql_user quoted user supplied identifers to create grant statements that look like this: GRANT SELECT on "tablename" to "user"; Which only works if the tablename is not in a namespace. If you supply a namespaced tabelname like "report.revenue" then it creates this incorrect statement: GRANT SELECT on "report.revenue" to "user"; Which will not find the "revenue" table in the "report" namespace, but will rather look for a table named "report.revenue" in the current (default public) namespace. The correct form is: GRANT SELECT on "report"."revenue" to "user"; This approach could have the unfortunate effect that code that previously relied on the other behavior to grant privileges on tables with periods in their names may now break. PostgreSQL users typically shouldn't name tables as such, and users can still access the old behavior and use tablenames with periods in the if they must by supplying their own quoting.
Alan Fairless committed
-
- 02 Jan, 2014 1 commit
-
-
The password is passed on a command line for dump and import and needs quoting. Ideally, this would not be passed on a command line at all - any ideas? Or at least have a stronger form of quoting so that embedded single quotes will be escaped.
Jim Kleckner committed
-
- 31 Dec, 2013 1 commit
-
-
Jinn Koriech committed
-
- 27 Dec, 2013 1 commit
-
-
The code for mysql_db did not pass the port argument when state=dump or state=import.
Jim Kleckner committed
-
- 05 Dec, 2013 2 commits
-
-
Jinn Koriech committed
-
Jinn Koriech committed
-
- 02 Dec, 2013 2 commits
-
-
James Tanner committed
-
James Tanner committed
-
- 29 Nov, 2013 1 commit
-
-
Make the changed status for postgres_db under CHECKMODE match the status that would be returned normally.
Kahlil (Kal) Hodgson committed
-
- 28 Nov, 2013 1 commit
-
-
Revert "No longer need to reference 'version_added' in docs for these, as this was quite a while ago." This reverts commit ff0a41d4.
Michael DeHaan committed
-