Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BatchOperations: create_primary_key and create_check_constraint #305

Closed
sqlalchemy-bot opened this issue Jun 27, 2015 · 8 comments
Closed

Comments

@sqlalchemy-bot
Copy link

Migrated issue, originally created by Felix Zumstein (@fzumstein)

Is there a special reason these two methods are "not yet implemented"? Or are they planned?

@sqlalchemy-bot
Copy link
Author

Michael Bayer (@zzzeek) wrote:

probably only because they havent been tested. Can you try out this patch and let me know if it works rudimentally? I dont think special logic should be needed for check constraints. For the PK constraint, the Table object has to replace its already present PKC which I think it should do, so that "should" work also:

diff --git a/alembic/operations.py b/alembic/operations.py
index 2bf8060..46bc8c6 100644
--- a/alembic/operations.py
+++ b/alembic/operations.py
@@ -1356,7 +1356,7 @@ class BatchOperations(Operations):
         return super(BatchOperations, self).drop_column(
             self.impl.table_name, column_name, schema=self.impl.schema)
 
-    def create_primary_key(self, name, cols):
+    def create_primary_key(self, name, cols, **kw):
         """Issue a "create primary key" instruction using the
         current batch migration context.
 
@@ -1368,7 +1368,9 @@ class BatchOperations(Operations):
             :meth:`.Operations.create_primary_key`
 
         """
-        raise NotImplementedError("not yet implemented")
+        kw['schema'] = self.impl.schema
+        return super(BatchOperations, self).create_primary_key(
+            name, self.impl.table_name, cols, **kw)
 
     def create_foreign_key(
             self, name, referent, local_cols, remote_cols, **kw):
@@ -1422,7 +1424,9 @@ class BatchOperations(Operations):
             :meth:`.Operations.create_check_constraint`
 
         """
-        raise NotImplementedError("not yet implemented")
+        kw['schema'] = self.impl.schema
+        return super(BatchOperations, self).create_check_constraint(
+            name, self.impl.table_name, condition, **kw)
 
     def drop_constraint(self, name, type_=None):
         """Issue a "drop constraint" instruction using the

@sqlalchemy-bot
Copy link
Author

Changes by Michael Bayer (@zzzeek):

  • added labels: batch migrations

@sqlalchemy-bot
Copy link
Author

Changes by Michael Bayer (@zzzeek):

  • set milestone to "tier 1"

@sqlalchemy-bot
Copy link
Author

Felix Zumstein (@fzumstein) wrote:

Hey thanks for the quick reply! The check constraint works, but the PK constraint ignores the name, i.e. it works but it creates an unnamed PK.

@sqlalchemy-bot
Copy link
Author

Michael Bayer (@zzzeek) wrote:

849996a

@sqlalchemy-bot
Copy link
Author

Michael Bayer (@zzzeek) wrote:

a294f8c

@sqlalchemy-bot
Copy link
Author

Changes by Michael Bayer (@zzzeek):

  • changed status to closed

@sqlalchemy-bot
Copy link
Author

Michael Bayer (@zzzeek) wrote:

primary key names are a little tricky as we don't support reflecting those names on most backends, but the batch mechanism will write it out if it has it. This is in master + a backport to 0.7.7 though at the moment it's not clear if 0.7.7 will just become 0.8.0.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants