summaryrefslogtreecommitdiff
path: root/sqlparse
Commit message (Collapse)AuthorAgeFilesLines
...
* 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 :)
* Code cleanup.Andi Albrecht2011-08-121-8/+11
|
* Added Get_Comments, StripComments, IncludeStatement, ColumnsSelect and Limit ↵Jesús Leganés Combarro "Piranna"2011-08-111-3/+155
| | | | filters.
* Update version.0.1.3Andi Albrecht2011-07-291-1/+1
|
* Minor fixes to make the py3k version work again.Andi Albrecht2011-07-291-1/+1
|
* Add parsing of MS Access column names with braces (fixes issue27).Andi Albrecht2011-07-291-0/+1
|
* Detection of placeholders in paramterized queries (fixes issue22).Andi Albrecht2011-07-251-1/+3
|
* Don't handle single chars as keywords.Andi Albrecht2011-07-251-3/+3
| | | | Most likely they are aliases.
* Releax keyword detection, when keywords are used as function names (fixes ↵Andi Albrecht2011-07-241-1/+2
| | | | issue36).
* 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
|
* Print list index in front of element.Andi Albrecht2011-07-231-3/+4
| | | | This makes it easy to access a token in the token list.
* Enable pretty print function again.Andi Albrecht2011-07-231-13/+12
|
* Make sure that identifier lists in subselects with alias are grouped correctly.Andi Albrecht2011-07-231-1/+1
|
* Avoid parsing of names as keywords (fixes issue39).Andi Albrecht2011-07-201-0/+1
|
* Fix removal of comments when strip_comments is True (fixes issue38).Andi Albrecht2011-06-101-4/+10
|
* Don't group trailing whitepsace in WHERE clauses (fixes issue35).Andi Albrecht2011-04-132-4/+10
|
* Ignore case in token.match() for all keyword types (fixes issue34).Andi Albrecht2011-03-171-1/+1
|
* Handle REPLACE as DML token and recognize hex numbers (thanks Ervin).Andi Albrecht2011-02-282-1/+2
|
* Fix formatting issue with extended CASE statements.Andi Albrecht2011-02-281-1/+2
|
* return a bit earlier in change_splitlevel().Andi Albrecht2011-02-111-0/+1
|
* Fix typo (thanks again, Kris).Andi Albrecht2011-01-261-1/+1
|
* Improve float parsing (thanks, Kris).Andi Albrecht2011-01-261-0/+1
|
* Bump version to 0.1.2.0.1.2Andi Albrecht2010-11-231-1/+1
|
* Add NOT NULL as keyword (fixes issue18).Andi Albrecht2010-11-221-0/+1
|
* Ignore identifiers in double-quotes when changing identifier case (fixes ↵Andi Albrecht2010-11-211-0/+6
| | | | issue21).
* Add VARCHAR2 and LONG to keywords (fixes issue16, fixes issue19).Andi Albrecht2010-11-211-0/+2
|
* Ignore AND after BETWEEN when reindenting statements (fixes issue14).Andi Albrecht2010-11-211-5/+12
|
* MergedAndi Albrecht2010-11-211-2/+8
|\
| * Backed out changeset 489299fc3548Andi Albrecht2010-11-211-2/+8
| |
* | Group extended identifiers (fixes issue15).Andi Albrecht2010-11-211-2/+4
|/