summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update version number for release.0.3.1Andreas Albrecht2020-02-292-3/+3
|
* add comma_first option for docsgingi992020-02-021-0/+5
|
* put available format options into API docxg19902020-02-021-0/+6
|
* Update changelog and authors.Andreas Albrecht2020-02-022-0/+2
|
* [grouping] group_as() no longer groups AS CTELikai Liu2020-02-022-1/+9
| | | | | | | | | | | | | | | | | This patch changes the grouping of AS so that: Foo AS WITH bar AS 1 SELECT 2 with no longer be grouped as: [Identifier[Foo, AS, WITH, Identifier[Bar AS 1]], SELECT, 2] but will be grouped as: [Identifier[Foo], AS, WITH, Identifier[Bar AS 1], SELECT, 2] This fixes the parsing of CREATE TABLE new_table AS WITH ... so the rest of the tokens after AS are parsed the same as a bare WITH.
* [fix] Fixing typed literal regressionJohn Bodley2020-02-023-4/+9
|
* Update sql.pyJohn Bodley2020-01-201-1/+2
|
* Update sql.pyJohn Bodley2020-01-201-1/+1
|
* [sql] Adding TIMESTAMP to typed literalJohn Bodley2020-01-201-1/+1
|
* CI: Remove obsolete comment.Andreas Albrecht2020-01-161-2/+1
|
* Update changelog and authors.Andreas Albrecht2020-01-162-0/+2
|
* Fix testCorey Zumar2020-01-161-14/+14
|
* Like/ilike comparison testCorey Zumar2020-01-161-0/+35
|
* Add symbols back to comparison testCorey Zumar2020-01-162-1/+2
|
* More test casesCorey Zumar2020-01-163-2/+23
|
* Add first test caseCorey Zumar2020-01-162-3/+4
|
* Map like and ilike clauses to comparisonsCorey Zumar2020-01-161-1/+1
|
* CI: Try to simplify Travis configuration.Andreas Albrecht2020-01-081-3/+1
|
* Add Python 3.8 to list of classifiers.Andreas Albrecht2020-01-081-0/+1
|
* CI: Add Python 3.8 to test matrix.Andreas Albrecht2020-01-081-0/+1
|
* Refactored extract column defs example (fixes #439, #411, #526).Andreas Albrecht2020-01-061-13/+20
|
* Update changelog.Andreas Albrecht2020-01-061-0/+1
|
* Stabilize grouping engine when parsing invalid SQL statements.Andreas Albrecht2020-01-061-2/+2
| | | | | It's just to make sure, that the comparison returns a valid result when feed with invalid SQL statements.
* Update changelog.Andreas Albrecht2019-10-211-0/+1
|
* CI: Skip codecov after code checks.Andreas Albrecht2019-10-201-0/+1
|
* CI: Try to run codechecks.Andreas Albrecht2019-10-201-0/+6
|
* Code cleanup.Andreas Albrecht2019-10-205-19/+26
|
* Update changelog and authors.Andreas Albrecht2019-10-202-0/+2
|
* support typed literals (if that's what they're called)Dvořák Václav2019-10-204-6/+71
|
* [sql] Fix TokenList.__init__ when no tokens are providedJohn Bodley2019-10-091-1/+1
|
* Update changelog.Andreas Albrecht2019-10-091-0/+1
|
* [fix] Addressing issue #507John Bodley2019-10-092-3/+11
|
* Restrict detection of alias names (fixes #455).Andreas Albrecht2019-10-094-20/+35
| | | | | This change adopts some parts of the pull request #509 by john-bodley. Thanks!
* Update extract_table_names.pyJames Winegar2019-07-181-1/+1
| | | PEP 479 Python 3.5+ raises an exception for StopIteration instead of a null return.
* Update Changelog.Andi Albrecht2019-06-261-0/+3
|
* Revert "Add in slash comment functionality"Toby Mao2019-06-263-23/+2
| | | | This reverts commit 170010e7d709f2145169d23482d006dc56856256.
* Optimize parsing of literal blocks between dollar signs (fixes #491).Andi Albrecht2019-06-262-1/+3
|
* Update README.Andi Albrecht2019-06-251-0/+4
|
* Fix typo)_(2019-06-131-1/+1
|
* Remove markup that github doesn't understand.Andi Albrecht2019-05-261-1/+1
|
* Correct some minor errors on Introduction page.Andi Albrecht2019-05-251-8/+3
|
* Replace print statment by print function in documentation.Andi Albrecht2019-05-251-1/+1
|
* Re-use parts of the README in documentation.Andi Albrecht2019-05-253-50/+44
|
* Minor documentation fixes.Andi Albrecht2019-05-254-22/+19
|
* Add support for time zone casts (fixes #489).Andi Albrecht2019-05-165-1/+31
|
* Identitfy NULLS FIRST/LAST as keywords (fixes #487).Andi Albrecht2019-05-013-0/+9
|
* Update changelog and authors and add regression test for #485.Andi Albrecht2019-04-173-0/+16
|
* Fixes #485William Ivanski2019-04-171-1/+1
|
* Fixes #485William Ivanski2019-04-171-1/+0
|
* Fixes #485William Ivanski2019-04-171-6/+9
|