| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.txt | 2015-10-16 | 1.6 kB |
|
| pgFormatter-1.4.tar.gz | 2015-10-16 | 30.0 kB | |
| Totals: 2 Items | 31.6 kB | 0 | |
April 18 2015 - v1.4
This release fixes several issues and adds a useful anonymization option to
be able to obfuscate all values in SQL queries, see option -a | --anonymize
at command line or the corresponding checkbox in the CGI interface.
- Fix wrong reset position when a FROM clause is encountered in a subselect.
Thanks to Alvaro Herrera for the report.
- Add information on indentation to obtain a single line statement in CGI
interface.
- Remove unecessary first line in text mode and stdout output. Thanks to
David Fetter for the report.
- Automatically set default page for Reset all redirection. Thanks to
rimbault for the report.
- Add -a | --anonymize to obfuscate all values in SQL queries.
- Add checkbox to activation anonymize feature from CGI interface.
- Ran perlcritic on the code, and fixed most critical issues. Thanks to
Hubert depesz Lubaczewski for the patch.
- Make anonymization more useful. Thanks to Hubert depesz Lubaczewski for
the patch.
- Removed anonymisation of interval value (eg: 1 day) and to_char date format
(eg: DD/MM/YYYY HH24:MI:SS. Add a sample into ex4.sql file.
- Add REPLACE to the list of SQL keywords. Thanks to Alvaro Herrera for the
report.
- Prevent new line to be inserted before OR after a CREATE keyword to have
CREATE OR REPLACE on a single line.
- Fix additional spaces added in function body separator ($BODY$ was
rewritten as $ BODY $). Thanks to Alvaro Herrera for the report.
- Prevent (....)::interval to be replaced by the anonymizer.
- Add sample file with create function for testing purpose.