Allow Oracle database parameters to specify input size.
Currently, the Oracle backend sets the input size to NCLOB
for character input > 4000 characters. In GeoDjango, geometry input text is passed into the SDO_UTIL.TO_WKTGEOMETRY stored procedure, which expects input of type CLOB
.
This patch allows database parameters to specify their input size via an input_size
attribute, that will be used for setinputsizes
instead of the default (if it exists). This functionality was added to the gis
branch in r7637, and needs to be in trunk for GeoDjango to work on Oracle when the branches merge for 1.0.
Change History
(4)
Owner: |
changed from Erin Kelly to Malcolm Tredinnick
|
Triage Stage: |
Unreviewed → Ready for checkin
|
Resolution: |
→ fixed
|
Status: |
new → closed
|
Patch that allows Oracle database parameters to specify input size.