Changes between Initial Version and Version 14 of Ticket #11580
- Timestamp:
- Nov 18, 2021, 3:06:58 AM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11580
- Property Component Uncategorized → Database layer (models, ORM)
- Property Keywords oracle TextField added
- Property Triage Stage Unreviewed → Accepted
- Property Summary Unable to query TextFiled against oracle nclob 10Gr4 → Unable to query TextField against oracle nclob 10Gr4
- Property Cc added
- Property Severity → Normal
- Property Type → Bug
- Property Easy pickings unset
- Property UI/UX unset
- Property Version 1.1-beta → master
- Property Owner changed from to
- Property Status new → assigned
-
Ticket #11580 – Description
initial v14 7 7 8 8 Environment: 9 9 {{{ 10 10 Request Method: GET 11 11 Request URL: http://django/eis/banobj/search/?q=class … … 27 27 'django.contrib.auth.middleware.AuthenticationMiddleware') 28 28 29 30 29 Template error: 31 30 In template /opt/django/eis/templates/banobj/arealist.html, error at line 17 … … 34 33 35 34 7 : {% block content %} 36 37 38 35 8 : <h1> {{heading}} </h1> 39 40 41 36 9 : <table border=1> 42 43 44 37 10 : <tr> 45 46 47 38 11 : <th>Banner Object</th> 48 49 50 39 12 : <th>Ready For Testing</th> 51 52 53 40 13 : <th>Tested</th> 54 55 56 41 14 : <th>Primary User</th> 57 58 59 42 15 : <th>Object Type</th> 60 61 62 43 16 : </tr> 63 64 65 44 17 : {% for obj in obj_list %} 66 67 68 45 18 : <tr bgcolor="{% cycle rowcolors %}"> 69 70 71 46 19 : <td><a href="/eis/banobj/wiki/{{ obj.id }}/">{{ obj.name|upper }}</a></td> 72 73 74 47 20 : <td>{% if obj.prod_svn %} 75 76 77 48 21 : <img src="/media/img/admin/icon-yes.gif"> 78 79 80 49 22 : {% else %} 81 82 83 50 23 : <img src="/media/img/admin/icon-no.gif"> 84 85 86 51 24 : {% endif %}</td> 87 88 89 52 25 : <td>{% if obj.user_tested %} 90 91 92 53 26 : <img src="/media/img/admin/icon-yes.gif"> 93 94 95 54 27 : {% else %} 96 55 … … 149 108 return tuple([self._rowfactory(r) 150 109 DatabaseError: ORA-06502: PL/SQL: numeric or value error: character string buffer too small 151 ORA-06512: at line 1 110 ORA-06512: at line 111 }}}