| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Update Changelog.0.1.10 | Andi Albrecht | 2013-11-02 | 1 | -2/+2 |
| | | |||||
| * | Bump version. | Andi Albrecht | 2013-11-02 | 1 | -1/+1 |
| | | |||||
| * | Actually import setup, even without setuptools (fixes #115). | Andi Albrecht | 2013-10-24 | 2 | -0/+2 |
| | | |||||
| * | Improve grouping of expressions (targets #23). | Andi Albrecht | 2013-10-24 | 3 | -3/+20 |
| | | |||||
| * | Cleanup tox.ini, remove Python 2.4 tests. | Andi Albrecht | 2013-10-24 | 1 | -1/+5 |
| | | | | | | tox and virtualenv doesn't support Python 2.4 anymore and for us it's time to drop support too. For now it still works, but we don't test it anymore. | ||||
| * | Add test case for JOIN, update Changelog and AUTHORS. | Andi Albrecht | 2013-10-24 | 3 | -5/+10 |
| | | |||||
| * | Merge pull request #112 from alexander-beedie/master | Andi Albrecht | 2013-10-23 | 2 | -1/+2 |
| |\ | | | | | extended JOIN token recognition/lexing (eg: FULL OUTER JOIN, NATURAL JOIN) | ||||
| | * | tighten up JOIN regex | Alexander Beedie | 2013-10-17 | 1 | -1/+1 |
| | | | | | | | ensure the regex does not match against invalid permutations such as 'LEFT OUTER CROSS JOIN', since CROSS/NATURAL keywords were added | ||||
| | * | extend regex to allow recognition of 'NATURAL JOIN' | Alexander Beedie | 2013-10-17 | 1 | -1/+1 |
| | | | |||||
| | * | add FULL to common keywords (frequently used in OUTER JOIN definitions) | Alexander Beedie | 2013-09-02 | 1 | -0/+1 |
| | | | |||||
| | * | add keyword recognition for "FULL OUTER JOIN" and "CROSS JOIN" | Alexander Beedie | 2013-09-02 | 1 | -1/+1 |
| | | | |||||
| * | | Remove buffered reading again (fixes #114). | Andi Albrecht | 2013-10-23 | 2 | -21/+9 |
| | | | | | | | | | It causes problems with some sources. | ||||
| * | | Switch back to development mode. | Andi Albrecht | 2013-09-28 | 1 | -1/+1 |
| | | | |||||
| * | | Preparing 0.1.90.1.9 | Andi Albrecht | 2013-09-28 | 2 | -3/+3 |
| | | | |||||
| * | | Fix tagging of identifiers by not taking single quoted strings into account ↵ | Andi Albrecht | 2013-09-28 | 4 | -6/+25 |
| | | | | | | | | | (fixes #111). | ||||
| * | | Update authors and changelist. | Andi Albrecht | 2013-09-15 | 2 | -0/+2 |
| | | | |||||
| * | | Merge pull request #110 from pvatala/master | Andi Albrecht | 2013-09-15 | 2 | -4/+18 |
| |\ \ | |/ |/| | Parenthesis, Functions and Arithmetic Expressions in Identifiers | ||||
| | * | Parenthesis, Functions and Arithmetic Expressions | prudhvi | 2013-09-13 | 2 | -4/+18 |
| |/ | | | are valid types to group an identifier | ||||
| * | Update AUTHORS. | Andi Albrecht | 2013-08-30 | 1 | -1/+2 |
| | | |||||
| * | Add skip_ws flag to Token.insert_after (fixes #108). | Andi Albrecht | 2013-08-30 | 1 | -2/+2 |
| | | |||||
| * | Parse scientific numbers as floats (fixes #107). | Andi Albrecht | 2013-08-26 | 3 | -0/+9 |
| | | |||||
| * | Add option to truncate long string literals. | Andi Albrecht | 2013-07-09 | 5 | -0/+79 |
| | | |||||
| * | Switch back to development version. | Andi Albrecht | 2013-06-29 | 1 | -1/+1 |
| | | |||||
| * | Bump version to 0.1.8.0.1.8 | Andi Albrecht | 2013-06-29 | 2 | -3/+3 |
| | | |||||
| * | Improve parsing of PEP249-style placeholder (fixes #103). | Andi Albrecht | 2013-06-29 | 3 | -0/+13 |
| | | |||||
| * | Code cleanup. | Andi Albrecht | 2013-06-17 | 1 | -0/+5 |
| | | |||||
| * | Fix indentation and simplify processing logic in example (fixes issue98, ↵ | Andi Albrecht | 2013-06-17 | 1 | -5/+5 |
| | | | | | issue99). | ||||
| * | Merge pull request #100 from rnix/patch-1 | Andi Albrecht | 2013-06-17 | 1 | -1/+3 |
| |\ | | | | | Stop parsing tables at first keyword after "from". | ||||
| | * | Stop parsing tables at first keyword after "from". | Robert Nix | 2013-06-17 | 1 | -1/+3 |
| |/ | | | | Currently, the parser isn't smart enough to acknowledge the end of the from-clause list so keywords as table names will still fail. But in simple tests, this solution works. Best-practice: don't use SQL keywords as table names. :) | ||||
| * | Allow whitespaces in certain keywords (fixes #97). | Andi Albrecht | 2013-06-17 | 3 | -3/+33 |
| | | |||||
| * | Update changelog. | Andi Albrecht | 2013-06-07 | 2 | -0/+2 |
| | | |||||
| * | Merge pull request #95 from mulos/master | Andi Albrecht | 2013-06-06 | 1 | -0/+1 |
| |\ | | | | | Added token 'USE' to keywords | ||||
| | * | Added token 'USE' to keywords | mulos | 2013-06-06 | 1 | -0/+1 |
| |/ | |||||
| * | Strip leading and trailing whitespaces from splitted statements. | Andi Albrecht | 2013-05-15 | 3 | -1/+10 |
| | | |||||
| * | Add test file for performance tests. | Andi Albrecht | 2013-05-15 | 1 | -0/+1 |
| | | |||||
| * | Improve performance of reindent engine a bit (targets issue41). | Andi Albrecht | 2013-05-10 | 2 | -4/+11 |
| | | |||||
| * | Add insecure flag when testing on Python 2.5. | Andi Albrecht | 2013-05-10 | 1 | -1/+1 |
| | | |||||
| * | Simplify travis configuration. | Andi Albrecht | 2013-05-10 | 1 | -14/+10 |
| | | |||||
| * | Update authors and changelog. | Andi Albrecht | 2013-05-10 | 3 | -2/+5 |
| | | |||||
| * | Merge pull request #94 from kilowu/master | Andi Albrecht | 2013-05-09 | 2 | -0/+7 |
| |\ | | | | | Fixed issue#93: Function.get_parameters returns empty list if there is only one parameter. | ||||
| | * | Added test for Function.get_parameters(). | wayne.wuw | 2013-05-09 | 1 | -0/+5 |
| | | | |||||
| | * | Fixed Function.get_parameters (issue93). | wayne.wuw | 2013-05-09 | 1 | -0/+2 |
| |/ | |||||
| * | Fix typo in keyword list (fixes issue92). | Andi Albrecht | 2013-04-28 | 1 | -1/+1 |
| | | |||||
| * | Update Changelog and AUTHORS. | Andi Albrecht | 2013-04-26 | 2 | -0/+2 |
| | | |||||
| * | Merge pull request #91 from yriveiro/master | Andi Albrecht | 2013-04-26 | 4 | -2/+8 |
| |\ | | | | | Added STRAIGHT_JOIN token to the parser | ||||
| | * | Fixed lack of a new line before function in test_format.py. | Yago Riveiro | 2013-04-26 | 1 | -0/+1 |
| | | | |||||
| | * | Added test to STRAIGHT_JOIN token. | Yago Riveiro | 2013-04-26 | 1 | -1/+5 |
| | | | |||||
| | * | Added STRAIGHT_JOIN token. | Yago Riveiro | 2013-04-25 | 3 | -2/+3 |
| |/ | |||||
| * | Allow NULL keyword in assignments (fixes #90). | Andi Albrecht | 2013-04-20 | 4 | -2/+39 |
| | | |||||
| * | Add Python 3.3 to tox configuration. | Andi Albrecht | 2013-04-20 | 1 | -1/+10 |
| | | |||||
