(self, using=None, connection=None, elide_empty=True)
| 367 | return result |
| 368 | |
| 369 | def get_compiler(self, using=None, connection=None, elide_empty=True): |
| 370 | if using is None and connection is None: |
| 371 | raise ValueError("Need either using or connection") |
| 372 | if using: |
| 373 | connection = connections[using] |
| 374 | return connection.ops.compiler(self.compiler)( |
| 375 | self, connection, using, elide_empty |
| 376 | ) |
| 377 | |
| 378 | def get_meta(self): |
| 379 | """ |