summaryrefslogtreecommitdiff
path: root/sqlparse/engine
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #285 from vmuriart/unify_naming_schemaAndi Albrecht2016-08-241-5/+5
|\
| * Unify_naming_schema. Closes #283Victor Uriarte2016-08-221-5/+5
* | Fix #284 as groupingVictor Uriarte2016-08-221-1/+1
|/
* Remove PostgreSQL builtin from _change_splitlevel.Victor Uriarte2016-08-131-18/+0
* Previous fix for period failed when another token (non-groupable) followed.Victor Uriarte2016-06-191-3/+8
* Revert behavior of dangling period(hanging schema qualifier)Victor Uriarte2016-06-181-2/+2
* Misc. small code clean-up/commentsVictor Uriarte2016-06-181-3/+2
* Change group_matching back to idxVictor Uriarte2016-06-151-6/+16
* remove group left_rightVictor Uriarte2016-06-151-27/+0
* Change grouping from _left_right to _groupVictor Uriarte2016-06-151-18/+71
* remove extra recurse and rename varsVictor Uriarte2016-06-151-30/+43
* Refactor _group's prev token logicVictor Uriarte2016-06-151-13/+11
* Reduce calls by _group to get tk idxVictor Uriarte2016-06-151-4/+15
* Re-Write grouping functionsVictor Uriarte2016-06-151-29/+47
* Reorder grouping code and func call orderVictor Uriarte2016-06-151-67/+66
* Make use of token_index more obviousVictor Uriarte2016-06-151-4/+6
* Normalize behavior between token_next and token_next_byVictor Uriarte2016-06-151-13/+12
* Rename token_idx_ funcs to simply token_ funcsVictor Uriarte2016-06-151-50/+50
* Change token_ funcs to token_idx funcsVictor Uriarte2016-06-151-52/+59
* Change argument order to match order of all other functionsVictor Uriarte2016-06-141-1/+2
* 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