(self, tablespace, inline=False)
| 571 | return "" |
| 572 | |
| 573 | def tablespace_sql(self, tablespace, inline=False): |
| 574 | if inline: |
| 575 | return "USING INDEX TABLESPACE %s" % self.quote_name(tablespace) |
| 576 | else: |
| 577 | return "TABLESPACE %s" % self.quote_name(tablespace) |
| 578 | |
| 579 | def adapt_datefield_value(self, value): |
| 580 | """ |