Changes between Initial Version and Version 14 of Ticket #11580


Ignore:
Timestamp:
Nov 18, 2021, 3:06:58 AM (2 years ago)
Author:
Mariusz Felisiak
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11580

    • Property Component UncategorizedDatabase layer (models, ORM)
    • Property Keywords oracle TextField added
    • Property Triage Stage UnreviewedAccepted
    • Property Summary Unable to query TextFiled against oracle nclob 10Gr4Unable to query TextField against oracle nclob 10Gr4
    • Property Cc Matt Boersma carsten.fuchs@… added
    • Property SeverityNormal
    • Property TypeBug
    • Property Easy pickings unset
    • Property UI/UX unset
    • Property Version 1.1-betamaster
    • Property Owner changed from nobody to Shai Berger
    • Property Status newassigned
  • Ticket #11580 – Description

    initial v14  
    77
    88Environment:
    9 
     9{{{
    1010Request Method: GET
    1111Request URL: http://django/eis/banobj/search/?q=class
     
    2727 'django.contrib.auth.middleware.AuthenticationMiddleware')
    2828
    29 
    3029Template error:
    3130In template /opt/django/eis/templates/banobj/arealist.html, error at line 17
     
    3433
    3534   7 : {% block content %}
    36 
    37 
    3835   8 : <h1> {{heading}} </h1>
    39 
    40 
    4136   9 : <table border=1>
    42 
    43 
    4437   10 : <tr>
    45 
    46 
    4738   11 :    <th>Banner Object</th>
    48 
    49 
    5039   12 :    <th>Ready For Testing</th>
    51 
    52 
    5340   13 :    <th>Tested</th>
    54 
    55 
    5641   14 :    <th>Primary User</th>
    57 
    58 
    5942   15 :    <th>Object Type</th>
    60 
    61 
    6243   16 : </tr>
    63 
    64 
    6544   17 :  {% for obj in  obj_list %}
    66 
    67 
    6845   18 : <tr bgcolor="{% cycle rowcolors %}">
    69 
    70 
    7146   19 :    <td><a href="/eis/banobj/wiki/{{ obj.id }}/">{{ obj.name|upper }}</a></td>
    72 
    73 
    7447   20 :    <td>{% if obj.prod_svn %}
    75 
    76 
    7748   21 :           <img src="/media/img/admin/icon-yes.gif">
    78 
    79 
    8049   22 :        {% else %}
    81 
    82 
    8350   23 :        <img src="/media/img/admin/icon-no.gif">
    84 
    85 
    8651   24 :        {% endif %}</td>
    87 
    88 
    8952   25 :    <td>{% if obj.user_tested %}
    90 
    91 
    9253   26 :           <img src="/media/img/admin/icon-yes.gif">
    93 
    94 
    9554   27 :        {% else %}
    9655
     
    149108    return tuple([self._rowfactory(r)
    150109DatabaseError: ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    151 ORA-06512: at line 1
     110ORA-06512: at line
     111}}}
Back to Top