summaryrefslogtreecommitdiff
path: root/sqlparse/engine
Commit message (Expand)AuthorAgeFilesLines
* Refactor _group_matchingVictor Uriarte2016-06-141-17/+13
* Apply alt style for grouping left/rightVictor Uriarte2016-06-141-7/+9
* Reapply fix for case within paranthesisVictor Uriarte2016-06-141-1/+3
* Merge remote-tracking branch 'core/long_live_indexes' into developVictor Uriarte2016-06-141-67/+69
|\
| * Use a specialized token_idx_next.Sjoerd Job Postmus2016-06-121-4/+4
| * Index-based token_idx_prevSjoerd Job Postmus2016-06-121-2/+3
| * Use specialized token_idx_next_by in group_aliased.Sjoerd Job Postmus2016-06-121-6/+4
| * Re-use token index in group_identifier.Sjoerd Job Postmus2016-06-121-8/+13
| * Replace _group_matching with an inward-out grouping algorithmSjoerd Job Postmus2016-06-121-8/+20
| * Special-case group_tokens(..., tokens_between())Sjoerd Job Postmus2016-06-121-24/+14
| * Call `Token`-methods index based.Sjoerd Job Postmus2016-06-121-24/+26
* | Refactor groupingVictor Uriarte2016-06-121-8/+11
* | Add sql.Operation tokenlistVictor Uriarte2016-06-121-7/+7
* | Fix grouping of `case` within parenthesis.Victor Uriarte2016-06-111-0/+2
* | clean up groupingVictor Uriarte2016-06-111-3/+4
* | Organize engine moduleVictor Uriarte2016-06-063-37/+53
* | Refactor statement filterVictor Uriarte2016-06-041-38/+27
* | Minor refactor statement filter and add commentsVictor Uriarte2016-06-041-10/+27
* | Refactor filter-stack to simplify logicVictor Uriarte2016-06-042-38/+15
* | Remove as parameter stack in filter.processVictor Uriarte2016-06-042-5/+5
* | Add or Update copyright year to filesVictor Uriarte2016-06-043-2/+14
* | Remove redundant functionsVictor Uriarte2016-06-021-15/+1
* | Fix flake8 stylingVictor Uriarte2016-05-292-4/+5
* | Fix unicode comparison warningVictor Uriarte2016-05-291-2/+2
* | Change old-style class to new-styleVictor Uriarte2016-05-291-1/+1
|/
* CREATE TABLE should not be parsed as FunctionTenghuan2016-05-291-0/+9
* refactor group_commentsVictor Uriarte2016-05-111-15/+9
* separate identifier grouping into its componentsVictor Uriarte2016-05-101-77/+50
* refactor identifier list and alias groupingVictor Uriarte2016-05-101-62/+26
* refactor _group_left_rightVictor Uriarte2016-05-101-64/+39
* group all the one-offsVictor Uriarte2016-05-101-31/+21
* Add group matching M_tokens and refactor group matchingVictor Uriarte2016-05-101-90/+22
* Introduce @recurse to refactor recursionVictor Uriarte2016-05-101-11/+7
* generalize group_tokens for more use casesVictor Uriarte2016-05-101-10/+4
* Improve identifier parsing when identifier is a literal combined with order k...Andi Albrecht2016-04-061-0/+2
* Fix #230 (function comparison grouping)saaj2016-04-051-1/+2
* Code cleanup.Andi Albrecht2016-04-031-24/+19
* fix issue #215Shen Longxing2015-12-181-2/+2
* Merge branch 'hotfix'.Andi Albrecht2015-12-081-3/+3
|\
| * Workaround to avoid IndexError when grouping identifiers.Andi Albrecht2015-12-081-3/+3
* | Cleanup module code.Andi Albrecht2015-10-263-11/+13
|/
* Fix PendingDeprecationWarning on Python 3.5.Tim Graham2015-10-231-1/+1
* Speed up token_index by providing a starting index.Ryan Wooden2015-10-211-8/+10
* Limit number of tokens checked in group_identifier.Ryan Wooden2015-10-211-2/+5
* Handle END IF correctly when splitting statements (fixes #194).Andi Albrecht2015-07-281-0/+3
* Don't treat DECLARE within BEGIN blocks as relevant to split level (fixes #193).Andi Albrecht2015-07-261-1/+1
* Group square-brackets into identifiersDarik Gamble2015-03-041-4/+5
* Parse square brackets as a group just like parensDarik Gamble2015-03-041-4/+43
* Move _find_matching to a module-level functionDarik Gamble2015-03-041-11/+13
* Group adjacent names to allow aliasing without the AS keywordDarik Gamble2015-02-091-3/+4