diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-03-24 13:50:56 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-03-24 13:50:56 -0400 |
| commit | a4703917d82a7100ff91d938c0592e39dd757a64 (patch) | |
| tree | 3d35eb919cc1b949a89acf2ff14f79bf5a7ab7c2 /doc | |
| parent | b5b751e3de817641583e7909fb8d28197ddcec86 (diff) | |
| download | sqlalchemy-a4703917d82a7100ff91d938c0592e39dd757a64.tar.gz | |
Loosened the check on dialect-specific argument names
passed to Table(); since we want to support external dialects
and also want to support args without a certain dialect
being installed, it only checks the format of the arg now,
rather than looking for that dialect in sqlalchemy.dialects.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/build/changelog/changelog_08.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst index b59ad07f7..d48b7080c 100644 --- a/doc/build/changelog/changelog_08.rst +++ b/doc/build/changelog/changelog_08.rst @@ -7,6 +7,15 @@ :version: 0.8.1 .. change:: + :tags: feature, sql + + Loosened the check on dialect-specific argument names + passed to Table(); since we want to support external dialects + and also want to support args without a certain dialect + being installed, it only checks the format of the arg now, + rather than looking for that dialect in sqlalchemy.dialects. + + .. change:: :tags: bug, sql Fixed bug whereby a DBAPI that can return "0" |
