summaryrefslogtreecommitdiff
path: root/sqlparse/engine
Commit message (Collapse)AuthorAgeFilesLines
...
* Improve formatting of HAVING statements.Andi Albrecht2014-12-211-1/+1
|
* Better handling of floats in UPDATE statements (issue145).Andi Albrecht2014-11-301-1/+1
|
* Handle single quoted strings in comparisons correctly (fixes issue148).Andi Albrecht2014-10-291-1/+2
|
* Fix a regression introduced in 0.1.12.Andi Albrecht2014-10-081-1/+1
|
* Improve parsing of identifier lists containing placeholders.Andi Albrecht2014-03-181-1/+1
|
* Improve handling of NULL in aliased identifiers.Andi Albrecht2014-03-031-0/+3
|
* Fix parsing and formatting of statements containing EXCEPT keyword.Andi Albrecht2014-01-281-1/+1
|
* Improve parsing of string literals in columns.Andi Albrecht2014-01-101-0/+1
|
* Support for BEGIN/END blocks, add FOREACH keyword.Andi Albrecht2013-11-191-1/+13
|
* Improve grouping of expressions (targets #23).Andi Albrecht2013-10-241-1/+1
|
* Fix tagging of identifiers by not taking single quoted strings into account ↵Andi Albrecht2013-09-281-2/+1
| | | | (fixes #111).
* Parenthesis, Functions and Arithmetic Expressionsprudhvi2013-09-131-4/+9
| | | are valid types to group an identifier
* Allow NULL keyword in assignments (fixes #90).Andi Albrecht2013-04-201-1/+3
|
* Allow keywords in identifier lists (fixes #10).Andi Albrecht2013-04-061-0/+1
|
* Add order criterion to identifier in ORDER BY clause (fixes #89).Andi Albrecht2013-04-051-0/+15
|
* Add encoding parameter to top-level functions (fixes issue20).Andi Albrecht2013-04-041-2/+2
|
* 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.
* I always forget to remove the prints for testing... :-PJesús Leganés Combarro "Piranna"2012-05-191-2/+0
|
* Merge branch 'master' into antiormJesús Leganés Combarro "Piranna"2012-05-191-0/+2
| | | | | Conflicts: sqlparse/filters.py
* Removed TokenFilter and using duck-typing instead (more pythonic)Jesús Leganés Combarro "Piranna"2012-04-281-12/+1
|
* 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
|
* Solved sisue 57: StatementFilter doesn't process correctly on recursive ↵Jesús Leganés Combarro "Piranna"2012-01-231-2/+3
| | | | statements (for example, triggers)
* Added commentsJesús Leganés Combarro "Piranna"2012-01-231-10/+16
|
* Added docstringsJesús Leganés Combarro "Piranna"2012-01-231-2/+10
|
* 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-272-4/+7
|\
| * Code cleanup.Andi Albrecht2011-09-062-4/+7
| |
* | Choose first token during identifier grouping when both names/symbols and ↵Andi Albrecht2011-09-271-6/+19
|/ | | | functions are found (fixes issue45).
* Split statements with IF as functions correctly (fixes issue33).Andi Albrecht2011-07-241-1/+5
|
* 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
|
* return a bit earlier in change_splitlevel().Andi Albrecht2011-02-111-0/+1
|
* 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-042-21/+33
|
* Clean up imports.Andi Albrecht2010-07-042-31/+34
| | | | | Removed wildcard imports, mainly to keep pyflakes quiet. But this change lifted some wrong imports and class usage.
* Improve statement detection for DECLARE statements outside ↵Andi Albrecht2010-06-231-3/+3
| | | | | | | | function/procedure definitions. The parser didn't recognized DECLARE statements outside function/procedure definitions correctly and assumed that a non-separating semicolon follows.
* 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
|