Bug 498752
| Summary: | No more "letters" pages with sqlite 3.6 | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Remi Collet <fedora> | ||||||
| Component: | repoview | Assignee: | Konstantin Ryabitsev <icon> | ||||||
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | ||||||
| Severity: | medium | Docs Contact: | |||||||
| Priority: | low | ||||||||
| Version: | 11 | CC: | icon, ron | ||||||
| Target Milestone: | --- | ||||||||
| Target Release: | --- | ||||||||
| Hardware: | All | ||||||||
| OS: | Linux | ||||||||
| Whiteboard: | |||||||||
| Fixed In Version: | 0.6.4-1.el5 | Doc Type: | Bug Fix | ||||||
| Doc Text: | Story Points: | --- | |||||||
| Clone Of: | Environment: | ||||||||
| Last Closed: | 2010-02-16 13:14:07 UTC | Type: | --- | ||||||
| Regression: | --- | Mount Type: | --- | ||||||
| Documentation: | --- | CRM: | |||||||
| Verified Versions: | Category: | --- | |||||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||||
| Embargoed: | |||||||||
| Attachments: |
|
||||||||
This bug appears to have been reported against 'rawhide' during the Fedora 11 development cycle. Changing version to '11'. More information and reason for this action is here: http://fedoraproject.org/wiki/BugZappers/HouseKeeping Please F12 is also affected... I confirm the bug, and I confirm the trivial patch fixes it. Maybe this could be fixed quickly? Seems that the issue is always present aloso for F-12 (and probably rawhide). Created attachment 366911 [details]
Fix substr and order issues
I found another bug.
If the repository contains various versions of the same package, latest list is not correct
New attached patch fixes both issues.
repoview-0.6.4-1.fc11 has been submitted as an update for Fedora 11. http://admin.fedoraproject.org/updates/repoview-0.6.4-1.fc11 repoview-0.6.4-1.fc12 has been submitted as an update for Fedora 12. http://admin.fedoraproject.org/updates/repoview-0.6.4-1.fc12 repoview-0.6.4-1.el5 has been submitted as an update for Fedora EPEL 5. http://admin.fedoraproject.org/updates/repoview-0.6.4-1.el5 repoview-0.6.4-1.el5 has been pushed to the Fedora EPEL 5 testing repository. If problems still persist, please make note of it in this bug report. If you want to test the update, you can install it with su -c 'yum --enablerepo=updates-testing update repoview'. You can provide feedback for this update here: http://admin.fedoraproject.org/updates/EL-5/FEDORA-EPEL-2010-0142 repoview-0.6.4-1.fc12 has been pushed to the Fedora 12 testing repository. If problems still persist, please make note of it in this bug report. If you want to test the update, you can install it with su -c 'yum --enablerepo=updates-testing update repoview'. You can provide feedback for this update here: http://admin.fedoraproject.org/updates/F12/FEDORA-2010-1182 repoview-0.6.4-1.fc11 has been pushed to the Fedora 11 testing repository. If problems still persist, please make note of it in this bug report. If you want to test the update, you can install it with su -c 'yum --enablerepo=updates-testing update repoview'. You can provide feedback for this update here: http://admin.fedoraproject.org/updates/F11/FEDORA-2010-1198 repoview-0.6.4-1.fc12 has been pushed to the Fedora 12 stable repository. If problems still persist, please make note of it in this bug report. repoview-0.6.4-1.fc11 has been pushed to the Fedora 11 stable repository. If problems still persist, please make note of it in this bug report. repoview-0.6.4-1.el5 has been pushed to the Fedora EPEL 5 stable repository. If problems still persist, please make note of it in this bug report. |
Created attachment 342196 [details] repoview-substr.patch Substr syntax have change in latest sqlite used in F11/rawhide First character is 1, and 0 is now undefined ---- simple script run in EL5 $ sqlite3 SQLite version 3.3.6 sqlite> select substr('ABC',1,1); A sqlite> select substr('ABC',0,1); A ---- simple script run in F11 $ sqlite3 SQLite version 3.6.12 sqlite> select substr('ABC',1,1); A sqlite> select substr('ABC',0,1); (latest return an empty string) As repoview use 0 to find the first letter, this fail. Simple/trivial patch attached solves the issue