Changeset 5992
- Timestamp:
- 08/21/07 12:06:06 (1 year ago)
- Files:
-
- django/trunk/django/db/backends/oracle/base.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/db/backends/oracle/base.py
r5983 r5992 71 71 72 72 def field_cast_sql(self, db_type): 73 if db_type .endswith('LOB'):73 if db_type and db_type.endswith('LOB'): 74 74 return "DBMS_LOB.SUBSTR(%s)" 75 75 else:
