Changes between Initial Version and Version 1 of Ticket #24040


Ignore:
Timestamp:
Dec 22, 2014, 9:15:12 AM (9 years ago)
Author:
JorisBenschop
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #24040

    • Property Summary _meta.db_name malformed when >30char_meta.db_table malformed in SQL statement when >31char
  • Ticket #24040 – Description

    initial v1  
    11I cant imagine this is not a known issue, but I havent been able to find it. Please show me the duplicate if there is one.
    22
    3 If I create a model (django dev, oracle 11.2 backend), the sql statement is distorted if the db_name is over 31 characters. Almost like a buffer overflow:
     3If I create a model (django dev, oracle 11.2 backend), the sql statement is distorted if the db_table is over 31 characters. Almost like a buffer overflow:
    44
    55GOOD:
    66
    7 _meta.db_name='variant_owr\".\"biomaterial_type'
     7_meta.db_table='variant_owr\".\"biomaterial_type'
    88{{{
    99DEBUG (0.003) QUERY = u'SELECT COUNT(:arg0) AS "__COUNT" FROM "VARIANT_OWR"."BIOMATERIAL_TYPE"' - PARAMS = (u'*',); args=('*',)
     
    1111BAD:
    1212
    13 _meta.db_name='variant_ownr\".\"biomaterial_type'
     13_meta.db_table='variant_ownr\".\"biomaterial_type'
    1414{{{
    1515DEBUG (0.002) QUERY = u'SELECT COUNT(:arg0) AS "__COUNT" FROM "VARIANT_OWNR"."BIOMATERIAL92C0"' - PARAMS = (u'*',); args=('*',)
Back to Top