MCPcopy
hub / github.com/django/django / tablespace_sql

Method tablespace_sql

django/db/backends/oracle/operations.py:573–577  ·  view source on GitHub ↗
(self, tablespace, inline=False)

Source from the content-addressed store, hash-verified

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 """

Callers 1

test_tablespace_sqlMethod · 0.45

Calls 1

quote_nameMethod · 0.95

Tested by 1

test_tablespace_sqlMethod · 0.36