summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * Remove duplicate StringIO importJon Dufresne2018-01-041-1/+0
|/
* Merge pull request #368 from jesse-c/add-more-pg-typesAndi Albrecht2017-12-181-0/+27
|\ | | | | Add more Postgres types
| * Add more Postgres types. [1]Jesse Claven2017-12-181-0/+27
|/ | | | [1] https://www.postgresql.org/docs/9.5/static/datatype.html#DATATYPE-TABLE
* Code cleanup.Andi Albrecht2017-12-031-5/+6
|
* Fix regression introduced by new indent_after_first option.Andi Albrecht2017-12-031-0/+1
|
* Merge pull request #366 from andialbrecht/typoAndi Albrecht2017-11-3012-24/+24
|\ | | | | Fix typos
| * Fix typostypoVictor Uriarte2017-11-2912-24/+24
|/
* Update authors and changelog.Andi Albrecht2017-11-242-1/+4
|
* Merge pull request #345 from johshoff/masterAndi Albrecht2017-11-243-2/+15
|\ | | | | Option to indent after first line
| * Adhere to styleJohannes Hoff2017-11-231-1/+1
| |
| * Option to indent after first lineJohannes Hoff2017-06-203-2/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds a command line argument `--indent_after_first` which sets the indentation of all lines after the first one, e.g. SELECT, UPDATE, etc. For example: $ sqlparse/__main__.py -r sample.sql UPDATE foo SET a = 1 WHERE a > 2 AND a < 10; $ sqlparse/__main__.py -r --indent_after_first sample.sql UPDATE foo SET a = 1 WHERE a > 2 AND a < 10;
* | Merge pull request #362 from jdufresne/wheel-licenseAndi Albrecht2017-11-211-0/+3
|\ \ | | | | | | Include license file in the generated wheel package
| * | Include license file in the generated wheel packageJon Dufresne2017-10-281-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | The wheel package format supports including the license file. This is done using the [metadata] section in the setup.cfg file. For additional information on this feature, see: https://wheel.readthedocs.io/en/stable/index.html#including-the-license-in-the-generated-wheel-file
* | | Merge pull request #363 from jdufresne/py26Andi Albrecht2017-11-212-5/+3
|\ \ \ | | | | | | | | Remove references and testing for unsupported Python versions
| * | | Remove references and testing for unsupported Python versionsJon Dufresne2017-10-282-5/+3
| |/ /
* | | Merge pull request #364 from jdufresne/flake8Andi Albrecht2017-11-211-2/+2
|\ \ \ | | | | | | | | Fix flake8 warning with newer flake8 version
| * | | Fix flake8 warning with newer flake8 versionJon Dufresne2017-10-281-2/+2
| |/ / | | | | | | | | | | | | Report "ambiguous variable name 'l'", replace with a more descriptive name.
* | | Merge pull request #365 from jdufresne/unclosedAndi Albrecht2017-11-212-5/+9
|\ \ \ | |/ / |/| | Fix unclosed file warnings discovered during tests
| * | Fix unclosed file warnings discovered during testsJon Dufresne2017-10-282-5/+9
|/ / | | | | | | | | | | | | | | Appear as: ResourceWarning: unclosed file ... Always explicitly close files or detach file wrappers.
* | Merge pull request #361 from pjdelport/update-nameAndi Albrecht2017-10-182-2/+2
|\ \ | | | | | | Update my name in AUTHORS & CHANGELOG
| * | (Update my name)Pi Delport2017-10-182-2/+2
|/ /
* | Switch back to development.Andi Albrecht2017-09-272-1/+7
| |
* | This is 0.2.4.0.2.4Andi Albrecht2017-09-272-3/+3
| |
* | Close files during tests.Andi Albrecht2017-09-243-11/+17
| |
* | Fix handling of semicolon when grouping assignments (fixes #359).Andi Albrecht2017-09-243-1/+12
| | | | | | | | | | | | When grouping assignments that contain a semicolon itself, the engine was too greedy. Assignments with semicolon were introduced in 691c0400e5a7d8229b7dce09bf47176539add328.
* | Update changelog and authors.Andi Albrecht2017-09-212-0/+2
| |
* | Merge pull request #330 from atronah/masterAndi Albrecht2017-09-212-4/+17
|\ \ | | | | | | adds '1.' option support for float numbers regex
| * \ Merge branch 'master' into masterAndi Albrecht2017-09-218-17/+57
| |\ \ | |/ / |/| |
* | | Update authors and changelog.Andi Albrecht2017-09-142-0/+2
| | |
* | | Code cleanup.Andi Albrecht2017-09-141-11/+11
| | |
* | | Merge pull request #357 from Demetrio92/masterAndi Albrecht2017-09-141-0/+16
|\ \ \ | | | | | | | | add PL/pgSQL syntax
| * \ \ Merge pull request #1 from Demetrio92/plpgsql-syntaxDemetrio922017-09-141-0/+16
| |\ \ \ | | | | | | | | | | add PL/pgSQL syntax
| | * | | add PL/pgSQL syntaxDemetrio922017-08-071-0/+16
| |/ / / | | | | | | | | tested with mxtr/SQLTools
* | | | Merge pull request #355 from mvbentes/masterAndi Albrecht2017-08-281-7/+7
|\ \ \ \ | |/ / / |/| | | Extend alphas with accented characters
| * | | Extend alphas with accented charactersmvbentes2017-08-251-7/+7
|/ / /
* | | Don't treat sysdate as a builtin (fixes #344).Andi Albrecht2017-07-291-1/+1
| | | | | | | | | | | | | | | | | | According to Oracle's developer documentation sysdate is a function that doesn't require any parameters. Hence it's different from other builtins like int or varchar.
* | | Fix parsing of UNION ALL after WHERE (fixes #349).Andi Albrecht2017-07-293-2/+14
| |/ |/|
* | Recognize MySQL table names starting with digits (fixes #337).Andi Albrecht2017-05-253-4/+8
| |
* | Update authors and changelog.Andi Albrecht2017-05-252-0/+5
| |
* | Merge pull request #333 from phdru/mysql_keywordsAndi Albrecht2017-05-231-0/+3
|\ \ | | | | | | Add more MySQL keywords
| * | Add MySQL keywords: ENGINE, AUTO_INCREMENT, CHARSETOleg Broytman2017-05-111-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | These are keywords from table options: CREATE TABLE name ( column definitions, ... ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
* | | Merge pull request #335 from jdufresne/bdist_wheelAndi Albrecht2017-05-231-1/+1
|\ \ \ | |/ / |/| | Rename section to [bdist_wheel] as [wheel] is considered "legacy"
| * | Rename section to [bdist_wheel] as [wheel] is considered "legacy"Jon Dufresne2017-05-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | See: https://bitbucket.org/pypa/wheel/src/54ddbcc9cec25e1f4d111a142b8bfaa163130a61/wheel/bdist_wheel.py?fileviewer=file-view-default#bdist_wheel.py-119:125 http://pythonwheels.com/
* | | Merge pull request #331 from jdufresne/generatorAndi Albrecht2017-04-301-2/+2
|\ \ \ | |/ / |/| | Use generator expression to avoid unnecessary temporary list
| * | Use generator expression to avoid unnecessary temporary listJon Dufresne2017-04-291-2/+2
|/ /
| * adds '1.' option support for float numbers regexatronah2017-04-302-2/+17
|/
* Merge pull request #328 from phdru/mysql_unlockAndi Albrecht2017-04-191-0/+1
|\ | | | | Add UNLOCK keyword
| * Add UNLOCK keywordOleg Broytman2017-04-141-0/+1
| |
* | Re-order parsing so that comparisons are seens as identifiers (fixes #327).Andi Albrecht2017-04-183-3/+19
|/
* Switch back to development version.Andi Albrecht2017-03-022-1/+7
|