| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge branch 'master' into v0.2.0v0.2.0 | Andi Albrecht | 2015-07-26 | 1 | -1/+1 |
| |\ | |||||
| | * | Don't treat DECLARE within BEGIN blocks as relevant to split level (fixes #193). | Andi Albrecht | 2015-07-26 | 1 | -1/+1 |
| | | | |||||
| * | | Merge master into v0.2.0. | Andi Albrecht | 2015-03-05 | 1 | -19/+61 |
| |\ \ | |/ | |||||
| | * | Group square-brackets into identifiers | Darik Gamble | 2015-03-04 | 1 | -4/+5 |
| | | | | | | | | | Indentifier.get_array_indices() looks for square brackets, and yields lists of bracket grouped tokens as array indices | ||||
| | * | Parse square brackets as a group just like parens | Darik Gamble | 2015-03-04 | 1 | -4/+43 |
| | | | | | | | | | | | - add class sql.SquareBrackets - replace group_parenthesis() with more generic group_brackets(), which groups square and round brackets, so each can contain groups of the other | ||||
| | * | Move _find_matching to a module-level function | Darik Gamble | 2015-03-04 | 1 | -11/+13 |
| | | | |||||
| * | | Merge master into v0.2.0 branch. | Andi Albrecht | 2015-02-21 | 1 | -2/+5 |
| |\ \ | |/ | |||||
| | * | Group adjacent names to allow aliasing without the AS keyword | Darik Gamble | 2015-02-09 | 1 | -3/+4 |
| | | | |||||
| | * | (postgresql) Add support for square bracket array indexing, by darikg. | Andi Albrecht | 2015-02-08 | 1 | -1/+3 |
| | | | | | | | | | Pull request #170 with trivial conflicts resolved. | ||||
| * | | Remove six dependency. | Andi Albrecht | 2015-01-17 | 1 | -2/+1 |
| | | | | | | | | | | | We only use very little of six. That isn't worth to add an extra dependency. | ||||
| * | | Migrate to six and get rid of 2to3. | Andi Albrecht | 2015-01-17 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | Now we've got really a single code base for both Python 2 and 3. For now it just adds a dependency to six which should be available on most systems. However, if it turns out to switch back to no dependencies it should be fairly easy to replace six by some conditional imports. | ||||
| * | | Remove conditional import targeting Python < 2.6. | Andi Albrecht | 2015-01-17 | 1 | -5/+0 |
| | | | |||||
| * | | Add flake8 to tox configuration and code cleanup. | Andi Albrecht | 2015-01-17 | 1 | -4/+5 |
| |/ | |||||
| * | Group comments to parent object (fixes #160). | Andi Albrecht | 2015-01-17 | 1 | -1/+20 |
| | | |||||
| * | Improve parsing of inline comments for identifiers (fixes #163). | Andi Albrecht | 2015-01-16 | 1 | -0/+2 |
| | | |||||
| * | Improve formatting of HAVING statements. | Andi Albrecht | 2014-12-21 | 1 | -1/+1 |
| | | |||||
| * | Better handling of floats in UPDATE statements (issue145). | Andi Albrecht | 2014-11-30 | 1 | -1/+1 |
| | | |||||
| * | Handle single quoted strings in comparisons correctly (fixes issue148). | Andi Albrecht | 2014-10-29 | 1 | -1/+2 |
| | | |||||
| * | Fix a regression introduced in 0.1.12. | Andi Albrecht | 2014-10-08 | 1 | -1/+1 |
| | | |||||
| * | Improve parsing of identifier lists containing placeholders. | Andi Albrecht | 2014-03-18 | 1 | -1/+1 |
| | | |||||
| * | Improve handling of NULL in aliased identifiers. | Andi Albrecht | 2014-03-03 | 1 | -0/+3 |
| | | |||||
| * | Fix parsing and formatting of statements containing EXCEPT keyword. | Andi Albrecht | 2014-01-28 | 1 | -1/+1 |
| | | |||||
| * | Improve parsing of string literals in columns. | Andi Albrecht | 2014-01-10 | 1 | -0/+1 |
| | | |||||
| * | Support for BEGIN/END blocks, add FOREACH keyword. | Andi Albrecht | 2013-11-19 | 1 | -1/+13 |
| | | |||||
| * | Improve grouping of expressions (targets #23). | Andi Albrecht | 2013-10-24 | 1 | -1/+1 |
| | | |||||
| * | Fix tagging of identifiers by not taking single quoted strings into account ↵ | Andi Albrecht | 2013-09-28 | 1 | -2/+1 |
| | | | | | (fixes #111). | ||||
| * | Parenthesis, Functions and Arithmetic Expressions | prudhvi | 2013-09-13 | 1 | -4/+9 |
| | | | | are valid types to group an identifier | ||||
| * | Allow NULL keyword in assignments (fixes #90). | Andi Albrecht | 2013-04-20 | 1 | -1/+3 |
| | | |||||
| * | Allow keywords in identifier lists (fixes #10). | Andi Albrecht | 2013-04-06 | 1 | -0/+1 |
| | | |||||
| * | Add order criterion to identifier in ORDER BY clause (fixes #89). | Andi Albrecht | 2013-04-05 | 1 | -0/+15 |
| | | |||||
| * | Add encoding parameter to top-level functions (fixes issue20). | Andi Albrecht | 2013-04-04 | 1 | -2/+2 |
| | | |||||
| * | Fix internals of _group_left_right, avoid identifying keywords as aliased ↵ | Andi Albrecht | 2013-03-18 | 1 | -3/+8 |
| | | | | | identifiers. | ||||
| * | PEP8'ified to code a bit. | Andi Albrecht | 2012-11-12 | 1 | -1/+2 |
| | | |||||
| * | Handle whitepaces between operators correctly, improve handling of ↵ | Andi Albrecht | 2012-11-11 | 1 | -1/+9 |
| | | | | | concatenated strings (issue53). | ||||
| * | Special case grouping logic for VARCHAR, otherwise it gets lost from field ↵ | Mike Amy | 2012-11-07 | 1 | -4/+5 |
| | | | | | definitions. | ||||
| * | I always forget to remove the prints for testing... :-P | Jesús Leganés Combarro "Piranna" | 2012-05-19 | 1 | -2/+0 |
| | | |||||
| * | Merge branch 'master' into antiorm | Jesús Leganés Combarro "Piranna" | 2012-05-19 | 1 | -0/+2 |
| | | | | | | Conflicts: sqlparse/filters.py | ||||
| * | Removed TokenFilter and using duck-typing instead (more pythonic) | Jesús Leganés Combarro "Piranna" | 2012-04-28 | 1 | -12/+1 |
| | | |||||
| * | various optimizations in sql.py | quest | 2012-04-22 | 1 | -1/+2 |
| | | |||||
| * | Properly group placeholders in identifier lists (fixes #52). | Andi Albrecht | 2012-04-19 | 1 | -0/+1 |
| | | |||||
| * | Pretty formatting of role keyword in identifier list (fixes #49). | Andi Albrecht | 2012-04-19 | 1 | -0/+1 |
| | | |||||
| * | Pretty format comments in identifier lists (fixes issue59). | Andi Albrecht | 2012-04-19 | 1 | -14/+16 |
| | | |||||
| * | Handle asterisks as operators when grouping identifiers (fixes issue58). | Andi Albrecht | 2012-02-26 | 1 | -1/+3 |
| | | |||||
| * | Solved sisue 57: StatementFilter doesn't process correctly on recursive ↵ | Jesús Leganés Combarro "Piranna" | 2012-01-23 | 1 | -2/+3 |
| | | | | | statements (for example, triggers) | ||||
| * | Added comments | Jesús Leganés Combarro "Piranna" | 2012-01-23 | 1 | -10/+16 |
| | | |||||
| * | Added docstrings | Jesús Leganés Combarro "Piranna" | 2012-01-23 | 1 | -2/+10 |
| | | |||||
| * | Allow CASE statements as identifiers (fixes issue46). | Andi Albrecht | 2011-09-29 | 1 | -1/+2 |
| | | |||||
| * | Detect alias for CASE statements (targets issue46). | Andi Albrecht | 2011-09-29 | 1 | -6/+5 |
| | | |||||
| * | Merged. | Andi Albrecht | 2011-09-27 | 2 | -4/+7 |
| |\ | |||||
| | * | Code cleanup. | Andi Albrecht | 2011-09-06 | 2 | -4/+7 |
| | | | |||||
