summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-11-16 21:44:16 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2014-11-16 21:44:16 -0500
commita02719dcca8f10d227f6e8fcfcb4b042a9e36cf7 (patch)
treedecc421a9e007a44fdb7ddaa140d24f0dd59825f /docs
parentafaba66ea550d9aefc823b7025d0e2b56d4a37fa (diff)
downloadalembic-a02719dcca8f10d227f6e8fcfcb4b042a9e36cf7.tar.gz
- Fixed a variety of issues surrounding rendering of Python code that
contains unicode literals. The first is that the "quoted_name" construct that SQLAlchemy uses to represent table and column names as well as schema names does not ``repr()`` correctly on Py2K when the value contains unicode characters; therefore an explicit stringification is added to these. Additionally, SQL expressions such as server defaults were not being generated in a unicode-safe fashion leading to decode errors if server defaults contained non-ascii characters. fixes #243
Diffstat (limited to 'docs')
-rw-r--r--docs/build/changelog.rst13
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst
index e790f92..312ca7e 100644
--- a/docs/build/changelog.rst
+++ b/docs/build/changelog.rst
@@ -6,6 +6,19 @@ Changelog
:version: 0.7.0
.. change::
+ :tags: bug, autogenerate
+ :tickets: 243
+
+ Fixed a variety of issues surrounding rendering of Python code that
+ contains unicode literals. The first is that the "quoted_name" construct
+ that SQLAlchemy uses to represent table and column names as well
+ as schema names does not ``repr()`` correctly on Py2K when the value
+ contains unicode characters; therefore an explicit stringification is
+ added to these. Additionally, SQL expressions such as server defaults
+ were not being generated in a unicode-safe fashion leading to decode
+ errors if server defaults contained non-ascii characters.
+
+ .. change::
:tags: bug, operations
:tickets: 174
:pullreq: bitbucket:29