Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix typostypo | Victor Uriarte | 2017-11-29 | 1 | -3/+3 |
| | |||||
* | Fix handling of semicolon when grouping assignments (fixes #359). | Andi Albrecht | 2017-09-24 | 1 | -1/+1 |
| | | | | | | When grouping assignments that contain a semicolon itself, the engine was too greedy. Assignments with semicolon were introduced in 691c0400e5a7d8229b7dce09bf47176539add328. | ||||
* | Re-order parsing so that comparisons are seens as identifiers (fixes #327). | Andi Albrecht | 2017-04-18 | 1 | -2/+2 |
| | |||||
* | Fix special case for #284 when statement starts with orphaned AS. | Andi Albrecht | 2016-10-24 | 1 | -1/+1 |
| | |||||
* | Handle operator grouping after identifying typecasts (fixes #297). | Andi Albrecht | 2016-10-01 | 1 | -1/+1 |
| | |||||
* | Correct license link (fixes #288). | Andi Albrecht | 2016-09-14 | 1 | -1/+1 |
| | |||||
* | Merge pull request #285 from vmuriart/unify_naming_schema | Andi Albrecht | 2016-08-24 | 1 | -5/+5 |
|\ | | | | | Unify_naming_schema. Closes #283 | ||||
| * | Unify_naming_schema. Closes #283 | Victor Uriarte | 2016-08-22 | 1 | -5/+5 |
| | | |||||
* | | Fix #284 as grouping | Victor Uriarte | 2016-08-22 | 1 | -1/+1 |
|/ | |||||
* | Previous fix for period failed when another token (non-groupable) followed. | Victor Uriarte | 2016-06-19 | 1 | -3/+8 |
| | |||||
* | Revert behavior of dangling period(hanging schema qualifier) | Victor Uriarte | 2016-06-18 | 1 | -2/+2 |
| | | | | | | Related to #261. Reverting to previous behavior until a way to handle behavior/grouping of invalid sql is agreed upon. | ||||
* | Misc. small code clean-up/comments | Victor Uriarte | 2016-06-18 | 1 | -3/+2 |
| | |||||
* | Change group_matching back to idx | Victor Uriarte | 2016-06-15 | 1 | -6/+16 |
| | |||||
* | remove group left_right | Victor Uriarte | 2016-06-15 | 1 | -27/+0 |
| | |||||
* | Change grouping from _left_right to _group | Victor Uriarte | 2016-06-15 | 1 | -18/+71 |
| | |||||
* | remove extra recurse and rename vars | Victor Uriarte | 2016-06-15 | 1 | -30/+43 |
| | | | | | # Conflicts: # sqlparse/engine/grouping.py | ||||
* | Refactor _group's prev token logic | Victor Uriarte | 2016-06-15 | 1 | -13/+11 |
| | |||||
* | Reduce calls by _group to get tk idx | Victor Uriarte | 2016-06-15 | 1 | -4/+15 |
| | |||||
* | Re-Write grouping functions | Victor Uriarte | 2016-06-15 | 1 | -29/+47 |
| | |||||
* | Reorder grouping code and func call order | Victor Uriarte | 2016-06-15 | 1 | -67/+66 |
| | | | | Remove repeated for-each/for grouping | ||||
* | Make use of token_index more obvious | Victor Uriarte | 2016-06-15 | 1 | -4/+6 |
| | |||||
* | Normalize behavior between token_next and token_next_by | Victor Uriarte | 2016-06-15 | 1 | -13/+12 |
| | | | | both will now return the "next" token and not itself when passing own index | ||||
* | Rename token_idx_ funcs to simply token_ funcs | Victor Uriarte | 2016-06-15 | 1 | -50/+50 |
| | |||||
* | Change token_ funcs to token_idx funcs | Victor Uriarte | 2016-06-15 | 1 | -52/+59 |
| | |||||
* | Change argument order to match order of all other functions | Victor Uriarte | 2016-06-14 | 1 | -1/+2 |
| | |||||
* | Refactor _group_matching | Victor Uriarte | 2016-06-14 | 1 | -17/+13 |
| | |||||
* | Apply alt style for grouping left/right | Victor Uriarte | 2016-06-14 | 1 | -7/+9 |
| | |||||
* | Reapply fix for case within paranthesis | Victor Uriarte | 2016-06-14 | 1 | -1/+3 |
| | |||||
* | Merge remote-tracking branch 'core/long_live_indexes' into develop | Victor Uriarte | 2016-06-14 | 1 | -67/+69 |
|\ | |||||
| * | Use a specialized token_idx_next. | Sjoerd Job Postmus | 2016-06-12 | 1 | -4/+4 |
| | | | | | | | | Prevent calling token_index. | ||||
| * | Index-based token_idx_prev | Sjoerd Job Postmus | 2016-06-12 | 1 | -2/+3 |
| | | | | | | | | | | Prevent some more calls to token_index in group_identifier_list. They are now all gone. | ||||
| * | Use specialized token_idx_next_by in group_aliased. | Sjoerd Job Postmus | 2016-06-12 | 1 | -6/+4 |
| | | | | | | | | | | | | | | | | | | | | The method group_aliased was making a lot of calls to token_index. By specializing token_next_by to token_idx_next_by, the calls to token_index became superfluous. Also use token_idx_next_by in group_identifier_list. It was making a lot of calls, which is now more than reduced in half. | ||||
| * | Re-use token index in group_identifier. | Sjoerd Job Postmus | 2016-06-12 | 1 | -8/+13 |
| | | |||||
| * | Replace _group_matching with an inward-out grouping algorithm | Sjoerd Job Postmus | 2016-06-12 | 1 | -8/+20 |
| | | | | | | | | | | | | | | | | | | | | | | All the matching between open/close was done all the time, first finding the matching closing token, and then grouping the tokens in between, and recurse over the newly created list. Instead, it is more efficient to look for the previous open-token on finding a closing-token, group these two together, and then continue on. squashed: Handle token indices in group_tokens_between and find_matching. | ||||
| * | Special-case group_tokens(..., tokens_between()) | Sjoerd Job Postmus | 2016-06-12 | 1 | -24/+14 |
| | | | | | | | | | | | | When having been guaranteed that the tokens form a range, it is possible to get rid of a lot of calls to `Token.tokens.remove(...)` which are expensive. | ||||
| * | Call `Token`-methods index based. | Sjoerd Job Postmus | 2016-06-12 | 1 | -24/+26 |
| | | | | | | | | | | | | | | | | | | | | A lot of methods have token-to-idx magic due to `Token._find_matching` converting tokens to indexes. Unknowingly, this turns innocent looking algorithms into O(n^2) (or worse). This does not solve the problem, but makes it more clear by moving the call to `Token.token_index` obvious at the call-site, at the cost of repeating it over-and-over. | ||||
* | | Refactor grouping | Victor Uriarte | 2016-06-12 | 1 | -8/+11 |
| | | | | | | | | Alternate form to transverse the tlists and clean up matching. | ||||
* | | Add sql.Operation tokenlist | Victor Uriarte | 2016-06-12 | 1 | -7/+7 |
| | | |||||
* | | Fix grouping of `case` within parenthesis. | Victor Uriarte | 2016-06-11 | 1 | -0/+2 |
| | | | | | | | | Closes #164 | ||||
* | | clean up grouping | Victor Uriarte | 2016-06-11 | 1 | -3/+4 |
| | | |||||
* | | Refactor filter-stack to simplify logic | Victor Uriarte | 2016-06-04 | 1 | -2/+3 |
| | | | | | | | | | | | | if (self.stmtprocess or self.postprocess or self.split_statements or self._grouping): always evaluates to true after removing unused features | ||||
* | | Add or Update copyright year to files | Victor Uriarte | 2016-06-04 | 1 | -0/+5 |
| | | |||||
* | | Fix flake8 styling | Victor Uriarte | 2016-05-29 | 1 | -2/+3 |
| | | |||||
* | | Fix unicode comparison warning | Victor Uriarte | 2016-05-29 | 1 | -2/+2 |
|/ | |||||
* | CREATE TABLE should not be parsed as Function | Tenghuan | 2016-05-29 | 1 | -0/+9 |
| | |||||
* | refactor group_comments | Victor Uriarte | 2016-05-11 | 1 | -15/+9 |
| | |||||
* | separate identifier grouping into its components | Victor Uriarte | 2016-05-10 | 1 | -77/+50 |
| | | | | | leaving sql.Operations in for future PR small behavior changed for invalid identifier | ||||
* | refactor identifier list and alias grouping | Victor Uriarte | 2016-05-10 | 1 | -62/+26 |
| | |||||
* | refactor _group_left_right | Victor Uriarte | 2016-05-10 | 1 | -64/+39 |
| | |||||
* | group all the one-offs | Victor Uriarte | 2016-05-10 | 1 | -31/+21 |
| |