Opened 16 years ago

Closed 16 years ago

#7407 closed (fixed)

fails to load fixtures with Oracle 10g when tablenames are too long

Reported by: erny Owned by: erny
Component: Database layer (models, ORM) Version: dev
Severity: Keywords: oracle bug
Cc: msaelices@… Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The problem is that tablenames are not properly escaped when calling sequence_reset_sql in db/backends/base.py.

Attachments (1)

oracle_sequence_reset_quote_name.patch (2.5 KB ) - added by erny 16 years ago.
Patches db/backends/oracle/base.py to correct table name quoting in sequence_reset_sql

Download all attachments as: .zip

Change History (4)

by erny, 16 years ago

Patches db/backends/oracle/base.py to correct table name quoting in sequence_reset_sql

comment:1 by Manuel Saelices, 16 years ago

Cc: msaelices@… added

comment:2 by edgarsj, 16 years ago

Keywords: bug added
Triage Stage: UnreviewedAccepted

comment:3 by Erin Kelly, 16 years ago

Resolution: fixed
Status: newclosed

(In [7833]) Fixed #7407 -- in Oracle, made sure table names are properly quoted when resetting sequences. Thanks, erny.

Note: See TracTickets for help on using tickets.
Back to Top