summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Dague <sean@dague.net>2014-01-11 23:08:27 -0500
committerSean Dague <sean@dague.net>2014-01-11 23:08:27 -0500
commit1214f39abb665627b427f2ad8504138a36aaf483 (patch)
treec42833cc5df85c5798f5ebc71fbad9ec3b939191
parentc427d24d7441d35444d444ab9f782018f49f40e5 (diff)
downloadsqlalchemy-pr/57.tar.gz
expose SchemaVisitor in the compatibility layerpr/57
sqlalchemy-migrate uses SchemaVisitor. It was one of the only objects that changed namespaces without compatibility that we use. Would love to get this added to remove a work around we need at https://review.openstack.org/#/c/66156/
-rw-r--r--lib/sqlalchemy/schema.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/sqlalchemy/schema.py b/lib/sqlalchemy/schema.py
index 172141539..9e647e595 100644
--- a/lib/sqlalchemy/schema.py
+++ b/lib/sqlalchemy/schema.py
@@ -8,6 +8,10 @@
"""
+from .sql.base import (
+ SchemaVisitor
+ )
+
from .sql.schema import (
CheckConstraint,