summaryrefslogtreecommitdiff
path: root/tests/test_parse.py
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into v0.2.0v0.2.0Andi Albrecht2015-07-261-0/+10
|\
| * Recognize MSSQL temp tables and distinguish from MySQL comments (fixes #192).Andi Albrecht2015-07-261-0/+10
| |
* | Merge remote-tracking branch 'origin/master' into v0.2.0Andi Albrecht2015-04-121-0/+10
|\ \ | |/
| * Support comments starting with '#' character (fixes #178).Andi Albrecht2015-03-161-0/+10
| |
* | Merge master into v0.2.0.Andi Albrecht2015-03-051-26/+55
|\ \ | |/
| * Add a bunch of square bracket testsDarik Gamble2015-03-041-26/+46
| |
| * Allow identifiers to start with an underscore (fixes #175).Andi Albrecht2015-03-011-0/+9
| |
* | Merge master into v0.2.0 branch.Andi Albrecht2015-02-211-0/+58
|\ \ | |/
| * (postgresql) Add support for square bracket array indexing, by darikg.Andi Albrecht2015-02-081-0/+49
| | | | | | | | Pull request #170 with trivial conflicts resolved.
| * Add double precision as a built-in datatypeDarik Gamble2015-02-061-0/+9
| |
* | Remove six dependency.Andi Albrecht2015-01-171-6/+5
| | | | | | | | | | We only use very little of six. That isn't worth to add an extra dependency.
* | Migrate to six and get rid of 2to3.Andi Albrecht2015-01-171-8/+10
|/ | | | | | | | Now we've got really a single code base for both Python 2 and 3. For now it just adds a dependency to six which should be available on most systems. However, if it turns out to switch back to no dependencies it should be fairly easy to replace six by some conditional imports.
* Fix a regression for identifiers with square bracktes notation (fixes #153).Andi Albrecht2014-12-011-0/+7
|
* Handle modulo operator without spacesGavin Wahl2014-08-071-0/+4
| | | | | | | `x %3` should be interpreted as a modulo operation, not a parameter marker. Co-authored-by: Rocky Meza <rmeza@fusionbox.com>
* Fix Function.get_parameters() returning empty list for SQL functions that ↵spigwitmer2014-02-051-0/+5
| | | | have a single nested function as a param
* Fix Function.get_parameters() with 1 literal as its parameterspigwitmer2014-02-041-0/+5
|
* Fix incorrect parsing of string literals with line breaks (fixes #118).Andi Albrecht2013-11-061-0/+6
|
* Fix tagging of identifiers by not taking single quoted strings into account ↵Andi Albrecht2013-09-281-0/+12
| | | | (fixes #111).
* Parse scientific numbers as floats (fixes #107).Andi Albrecht2013-08-261-0/+7
|
* Improve parsing of PEP249-style placeholder (fixes #103).Andi Albrecht2013-06-291-0/+11
|
* Update authors and changelog.Andi Albrecht2013-05-101-1/+1
|
* Added test for Function.get_parameters().wayne.wuw2013-05-091-0/+5
|
* Fix parsing error with dollar-quoted procedure bodies (fixes issue83).Andi Albrecht2012-12-221-0/+21
|
* PEP8'ified to code a bit.Andi Albrecht2012-11-121-1/+1
|
* Improve handling of quoted indentifiers (fixes issue78).Andi Albrecht2012-11-031-0/+7
|
* Make keyword detection more restrict (fixes issue47).Andi Albrecht2011-09-291-0/+4
| | | | | Keywords most likely don't follow dots. Maybe there are other exclusions too, but for now let's just go with this one.
* Add parsing of MS Access column names with braces (fixes issue27).Andi Albrecht2011-07-291-0/+7
|
* Detection of placeholders in paramterized queries (fixes issue22).Andi Albrecht2011-07-251-0/+20
|
* Improve float parsing (thanks, Kris).Andi Albrecht2011-01-261-0/+14
|
* Query token ancestry.Andi Albrecht2009-07-121-0/+24
|
* Turn relative import in tests module to absolute imports.Andi Albrecht2009-04-301-1/+1
|
* Initial import.Andi Albrecht2009-04-031-0/+39