summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-12-11 20:00:39 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2013-12-11 20:00:39 -0500
commitd5384d601107b76bca1634c55fb72372b2d68d42 (patch)
tree3d5b3e1aad312e16ad36d67d8be6b6fd95a9890b /doc
parent84af7e6c22100ef26c5a27185b1d270f5afb3370 (diff)
downloadsqlalchemy-d5384d601107b76bca1634c55fb72372b2d68d42.tar.gz
- implement "literal binds" for the text() clause, [ticket:2882]
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/changelog_09.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/build/changelog/changelog_09.rst b/doc/build/changelog/changelog_09.rst
index b1da813cb..c40c4c6c8 100644
--- a/doc/build/changelog/changelog_09.rst
+++ b/doc/build/changelog/changelog_09.rst
@@ -128,13 +128,15 @@
.. change::
:tags: feature, sql
- :tickets: 2877
+ :tickets: 2877, 2882
New improvements to the :func:`.text` construct, including
more flexible ways to set up bound parameters and return types;
in particular, a :func:`.text` can now be turned into a full
FROM-object, embeddable in other statements as an alias or CTE
- using the new method :meth:`.TextClause.columns`.
+ using the new method :meth:`.TextClause.columns`. The :func:`.text`
+ construct can also render "inline" bound parameters when the construct
+ is compiled in a "literal bound" context.
.. seealso::