summaryrefslogtreecommitdiff
path: root/sqlparse
Commit message (Expand)AuthorAgeFilesLines
...
* Include patches from extras/py3k/fixes.diff (fixes issue12).Andi Albrecht2010-11-211-8/+2
* Remove next() patch (targets issue12).Andi Albrecht2010-11-211-1/+6
* Match single line comments at end of string.Andi Albrecht2010-11-141-1/+4
* Check for None values in options dict, reported by Marco44.Andi Albrecht2010-08-261-2/+2
* Fix typo: Comparsion -> Comparison.Andi Albrecht2010-07-044-9/+9
* PEP8: Code cleanup.Andi Albrecht2010-07-047-60/+76
* Clean up imports.Andi Albrecht2010-07-045-673/+668
* Improve statement detection for DECLARE statements outside function/procedure...Andi Albrecht2010-06-231-3/+3
* Improve detection of escaped single quotes (fixes issue13, reported by Martin...Andi Albrecht2010-06-171-2/+2
* Fix an issue with trailing whitespaces (reported by Kris).Andi Albrecht2010-02-181-1/+5
* Improved case detection for CASE structures without WHEN in first case.Andreas Albrecht2009-10-221-2/+8
* Prevent WHERE grouper from consuming closing parenthesis (fixes issue9, repor...Andi Albrecht2009-09-122-1/+9
* Use utf-8 instead of latin-1 as default encoding.Andi Albrecht2009-09-021-2/+2
* Remove duplicated keywords.Andi Albrecht2009-08-271-26/+0
* Improve detection of identifier aliases (fixes issue8).Andi Albrecht2009-07-131-1/+6
* Keep function arguments together:Andi Albrecht2009-07-121-1/+1
* Query token ancestry.Andi Albrecht2009-07-121-0/+26
* Add parent relationships.Andi Albrecht2009-07-121-1/+5
* 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-123-3/+6
* Fix incorrect detection of keyword fragments in names (fixes issue7, reported...Andi Albrecht2009-06-241-3/+3
* pep8'ified the code a bit.Andi Albrecht2009-06-116-38/+11
* Cleaned up some unused imports.Andi Albrecht2009-06-114-18/+5
* Removed types import.Andi Albrecht2009-06-111-2/+1
* Minor performance improvement when matching token types.Andi Albrecht2009-06-111-1/+1
* Cleanup in token.pyAndi Albrecht2009-06-111-44/+1
* Grouping of function/procedure calls.Andi Albrecht2009-05-272-0/+31
* 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
* Updated version number.0.1.1Andi Albrecht2009-05-061-1/+1
* * Python and PHP output filter now add a trailing whitespace.Andi Albrecht2009-05-063-9/+9
* Code cleanup and test coverage.Andi Albrecht2009-05-063-51/+14
* Removed backup copy of grouping module.Andi Albrecht2009-05-061-499/+0
* Removed obsolete dialects module.Andi Albrecht2009-05-061-88/+0
* Removed logging stuff that was only needed for debugging on AppEngine.Andi Albrecht2009-05-063-9/+0
* Do the type check once in Token.match.Andi Albrecht2009-05-061-4/+3
* * Added profile option to run_tests.py.Andi Albrecht2009-05-061-6/+6
* Added Token.flatten() that just yields self to unify behavior of TokenList an...Andi Albrecht2009-05-051-0/+4
* * Added missing SET keyword.Andi Albrecht2009-05-054-2/+6
* Improved check for duplicated newlines (targets issue3).Andi Albrecht2009-05-051-2/+5
* Avoid duplicate linebreaks when reformatting (targets issue3).Andi Albrecht2009-05-031-2/+6
* Improved parsing of identifier lists (targets issue2).Andi Albrecht2009-05-033-25/+54
* Basic support for T-SQL variables prefixed with @.Andi Albrecht2009-04-301-0/+1
* Return an empty string iff a token's value is None.Andi Albrecht2009-04-301-1/+1
* Recognize backticks quoting identifiers.Andi Albrecht2009-04-291-0/+4
* Typo fixed.Andi Albrecht2009-04-271-1/+1
* Improved handling of invalid identifiers, like for example "a.".Andi Albrecht2009-04-271-2/+18
* Recurse into subgroups when grouping case statements.Andi Albrecht2009-04-241-1/+2
* Handle wildcards in identifiers.Andi Albrecht2009-04-242-2/+15
* Analyse AS recursive (fixes issue4).Andi Albrecht2009-04-211-13/+16