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

bulk_create doesn't work with multi-table inheritance #23

Open
cfytrok opened this issue Oct 2, 2020 · 0 comments
Open

bulk_create doesn't work with multi-table inheritance #23

cfytrok opened this issue Oct 2, 2020 · 0 comments

Comments

@cfytrok
Copy link

cfytrok commented Oct 2, 2020

Replace bulk_create with iteration in atomic transaction in a multi-table inheritance scenario.

if is_multitabel_inheritance(self.model):
      with transaction.atomic():
          for obj in objs:
               obj.save()
          return objs

def is_multitabel_inheritance(cls):
    for parent in cls._meta.get_parent_list():
        if parent._meta.concrete_model is not cls._meta.concrete_model:
            return True
    return False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant