summaryrefslogtreecommitdiff
path: root/sqlparse
Commit message (Collapse)AuthorAgeFilesLines
* Finished homogeneizationJesús Leganés Combarro "Piranna"2012-04-281-6/+19
|
* Clean-up and optimizationsJesús Leganés Combarro "Piranna"2012-04-281-6/+10
|
* Removed Pep8 warningsJesús Leganés Combarro "Piranna"2012-04-281-3/+6
|
* Put common code from Python and PHP output filters in OutputFilterJesús Leganés Combarro "Piranna"2012-04-281-35/+35
|
* Re-use of parsestream() for parse() (they are almost equal)Jesús Leganés Combarro2012-04-271-4/+2
|
* Added Quest to authors and little convention fixedJesús Leganés Combarro "Piranna"2012-04-231-1/+2
|
* various optimizations in sql.pyquest2012-04-222-9/+21
|
* Oops; doesnt handle UTF-8 correctly when reading from streamquest2012-04-221-3/+4
|
* splitstream -> parsestreamquest2012-04-211-9/+10
|
* Minor clarifications and doc updatesquest2012-04-212-10/+12
|
* Always use a stream internally; makes things more readable.quest2012-04-211-15/+16
|
* We can now work with file-like objects.quest2012-04-212-18/+47
|
* Bump version to 0.1.40.1.4Andi Albrecht2012-04-201-2/+2
|
* TokenLists.value is equal to their unicode() representation (fixes #30).Andi Albrecht2012-04-191-1/+1
|
* 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-193-14/+27
|
* Preserve whitespace after subgroups.Andi Albrecht2012-04-191-4/+5
|
* Fixed regular expression for NameplacesJesús Leganés Combarro "Piranna"2012-03-242-6/+2
|
* Optimized output of SQL codeJesús Leganés Combarro "Piranna"2012-03-241-5/+12
|
* Clean-upJesús Leganés Combarro "Piranna"2012-03-241-2/+5
|
* Optimization of returned SQL codeJesús Leganés Combarro "Piranna"2012-03-241-6/+6
|
* Fixed bug on StripWhitespaceJesús Leganés Combarro "Piranna"2012-03-241-9/+2
|
* Clean-up and comments of StripWhitespaceJesús Leganés Combarro "Piranna"2012-03-211-11/+18
|
* Merge with 8677660079e32dd12fa3bb8efd64841e685d0e47Jesús Leganés Combarro "Piranna"2012-02-271-1/+3
|\
| * Handle asterisks as operators when grouping identifiers (fixes issue58).Andi Albrecht2012-02-261-1/+3
| |
* | Added StripWhitespace filterJesús Leganés Combarro "Piranna"2012-02-141-0/+20
|/
* Changed get_case() to use a mode stateful variableJesús Leganés Combarro "Piranna"2012-02-031-15/+25
|
* Changed get_identifiers() to be a generatorJesús Leganés Combarro "Piranna"2012-02-032-4/+5
|
* Removed useless default return None (they are by default in Python)Jesús Leganés Combarro "Piranna"2012-02-031-9/+12
|
* Changed get_sublists() to a generatorJesús Leganés Combarro "Piranna"2012-02-031-1/+4
|
* Removed TokenList.__str__() (it was the same that its parent one)Jesús Leganés Combarro "Piranna"2012-02-031-3/+0
|
* Change all internal use of to_unicode() to __unicode__() and marked former ↵Jesús Leganés Combarro "Piranna"2012-02-032-8/+11
| | | | one as deprecated.
* 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
|
* Fixed lexer to accept negative numbers (fixes issue56).Kevin Jing Qiu2012-01-101-5/+5
|
* Remove some obsolete parts from lexer.py.Andi Albrecht2011-09-291-10/+1
|
* Allow CASE statements as identifiers (fixes issue46).Andi Albrecht2011-09-291-1/+2
|
* Detect alias for CASE statements (targets issue46).Andi Albrecht2011-09-292-40/+40
|
* Make keyword detection more restrict (fixes issue47).Andi Albrecht2011-09-291-0/+1
| | | | | Keywords most likely don't follow dots. Maybe there are other exclusions too, but for now let's just go with this one.
* Merged.Andi Albrecht2011-09-276-10/+58
|\
| * Merge.Andi Albrecht2011-09-063-4/+49
| |\
| | * Move pipeline test to tests/ directory.Andi Albrecht2011-09-041-72/+0
| | |
| | * Converted test function of pipeline in standard UnitTestJesús Leganés Combarro "Piranna"2011-09-021-52/+65
| | |
| | * Added pipeline support maintaining backward compatibility.Jesús Leganés Combarro "Piranna"2011-08-183-1/+105
| | |
| | * Changed ColumnsSelect from yielding tokens to yielding column names (strings)Jesús Leganés Combarro "Piranna"2011-08-131-3/+3
| | |
| * | Code cleanup.Andi Albrecht2011-09-063-6/+9
| |/
* | Choose first token during identifier grouping when both names/symbols and ↵Andi Albrecht2011-09-271-6/+19
|/ | | | functions are found (fixes issue45).
* Remove with statement to stay as compatible with older Python versions as ↵Andi Albrecht2011-08-121-3/+3
| | | | | | possible. For now, sqlparse is still compatible with Python 2.4 :)