summaryrefslogtreecommitdiff
path: root/sqlparse/engine/grouping.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix internals of _group_left_right, avoid identifying keywords as aliased ↵Andi Albrecht2013-03-181-3/+8
| | | | identifiers.
* PEP8'ified to code a bit.Andi Albrecht2012-11-121-1/+2
|
* Handle whitepaces between operators correctly, improve handling of ↵Andi Albrecht2012-11-111-1/+9
| | | | concatenated strings (issue53).
* Special case grouping logic for VARCHAR, otherwise it gets lost from field ↵Mike Amy2012-11-071-4/+5
| | | | definitions.
* various optimizations in sql.pyquest2012-04-221-1/+2
|
* Properly group placeholders in identifier lists (fixes #52).Andi Albrecht2012-04-191-0/+1
|
* Pretty formatting of role keyword in identifier list (fixes #49).Andi Albrecht2012-04-191-0/+1
|
* Pretty format comments in identifier lists (fixes issue59).Andi Albrecht2012-04-191-14/+16
|
* Handle asterisks as operators when grouping identifiers (fixes issue58).Andi Albrecht2012-02-261-1/+3
|
* Allow CASE statements as identifiers (fixes issue46).Andi Albrecht2011-09-291-1/+2
|
* Detect alias for CASE statements (targets issue46).Andi Albrecht2011-09-291-6/+5
|
* Merged.Andi Albrecht2011-09-271-2/+4
|\
| * Code cleanup.Andi Albrecht2011-09-061-2/+4
| |
* | Choose first token during identifier grouping when both names/symbols and ↵Andi Albrecht2011-09-271-6/+19
|/ | | | functions are found (fixes issue45).
* Detect function aliases better.Andi Albrecht2011-07-241-4/+5
|
* Allow functions in identifer lists (targest issue10).Andi Albrecht2011-07-231-1/+1
|
* Make sure that identifier lists in subselects with alias are grouped correctly.Andi Albrecht2011-07-231-1/+1
|
* Don't group trailing whitepsace in WHERE clauses (fixes issue35).Andi Albrecht2011-04-131-1/+2
|
* Group extended identifiers (fixes issue15).Andi Albrecht2010-11-211-2/+4
|
* Remove next() patch (targets issue12).Andi Albrecht2010-11-211-1/+6
|
* Fix typo: Comparsion -> Comparison.Andi Albrecht2010-07-041-4/+4
|
* PEP8: Code cleanup.Andi Albrecht2010-07-041-20/+30
|
* Clean up imports.Andi Albrecht2010-07-041-30/+33
| | | | | Removed wildcard imports, mainly to keep pyflakes quiet. But this change lifted some wrong imports and class usage.
* Prevent WHERE grouper from consuming closing parenthesis (fixes issue9, ↵Andi Albrecht2009-09-121-1/+1
| | | | reported by estama).
* Improve detection of identifier aliases (fixes issue8).Andi Albrecht2009-07-131-1/+6
|
* Detect functions if they are used as identifiers.Andi Albrecht2009-07-121-9/+19
|
* Distinguish between operators that are part of a comparsion and others.Andi Albrecht2009-07-121-2/+3
|
* Cleaned up some unused imports.Andi Albrecht2009-06-111-3/+0
|
* Grouping of function/procedure calls.Andi Albrecht2009-05-271-0/+17
|
* Fixed grouping of semicolons within assignments.Andi Albrecht2009-05-141-2/+6
|
* Make sure that operators in comparsions are not handled too lazy.Andi Albrecht2009-05-141-3/+11
|
* * Added missing SET keyword.Andi Albrecht2009-05-051-0/+1
| | | | * IdentifierList.get_identifiers() now returns not only Identifier instances.
* Improved parsing of identifier lists (targets issue2).Andi Albrecht2009-05-031-24/+37
|
* Recurse into subgroups when grouping case statements.Andi Albrecht2009-04-241-1/+2
|
* Handle wildcards in identifiers.Andi Albrecht2009-04-241-1/+3
|
* Analyse AS recursive (fixes issue4).Andi Albrecht2009-04-211-13/+16
|
* Moved syntactical units to sql module.Andi Albrecht2009-04-061-308/+1
|
* Initial import.Andi Albrecht2009-04-031-0/+537