summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMark Sandan <msandan@utexas.edu>2016-05-23 17:08:36 -0700
committerMike Bayer <mike_mp@zzzcomputing.com>2016-06-16 11:43:02 -0400
commitd7b8b475f8a5c0ddf955157f89db3d44d0dc0d9a (patch)
tree8ce3434eec8554bf085c2b7068c66d0588e2383a /doc
parente5bdf96bc0b1503c4e4c8461748cd061f624e346 (diff)
downloadsqlalchemy-d7b8b475f8a5c0ddf955157f89db3d44d0dc0d9a.tar.gz
Add DDLCompiler.create_table_suffix()
Allows custom dialects to add keywords after the CREATE TABLE section. Change-Id: I6fa66dfcf00ef95122f491a9115410df2746cf88
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/changelog_11.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_11.rst b/doc/build/changelog/changelog_11.rst
index 534c3993c..2b71c799d 100644
--- a/doc/build/changelog/changelog_11.rst
+++ b/doc/build/changelog/changelog_11.rst
@@ -266,6 +266,15 @@
.. change::
:tags: feature, sql
+ :pullreq: github:275
+
+ Added a hook in :meth:`.DDLCompiler.visit_create_table` called
+ :meth:`.DDLCompiler.create_table_suffix`, allowing custom dialects
+ to add keywords after the "CREATE TABLE" clause. Pull request
+ courtesy Mark Sandan.
+
+ .. change::
+ :tags: feature, sql
:pullreq: github:231
Negative integer indexes are now accommodated by rows