()
| 258 | self.Author.objects.insert([a1], load_bulk=True) |
| 259 | |
| 260 | def bulk_create_author_without_load(): |
| 261 | a1 = self.Author(name="Bill Shakespeare") |
| 262 | self.Author.objects.insert([a1], load_bulk=False) |
| 263 | |
| 264 | def load_existing_author(): |
| 265 | a = self.Author(name="Bill Shakespeare") |