Mantis Bugtracker

Viewing Issue Simple Details Jump to Notes ] View Advanced ] Issue History ] Print ]
ID Category Severity Reproducibility Date Submitted Last Update
0000131 [Sphinx] general major have not tried 2008-02-06 17:14 2009-11-27 12:28
Reporter colin View Status public  
Assigned To kpumuk
Priority normal Resolution fixed  
Status closed   Product Version 0.9.8-rc1
Summary 0000131: 64 bits docid computation bug in the client.rb Ruby client API 0.4.0-r1065
Description in method RunQueries the following:

          if id64 != 0
            dochi, doclo, weight = response[p, 12].unpack('N*N*N*'); p += 12
            doc = dochi << 32 + doclo
          else

should be

          if id64 != 0
            dochi, doclo, weight = response[p, 12].unpack('N*N*N*'); p += 12
            doc = (dochi << 32) + doclo
          else
Additional Information # = client.rb - Sphinx Client API
#
# Author:: Dmytro Shteflyuk <mailto:kpumuk@kpumuk.info>.
# Copyright:: Copyright (c) 2006 - 2008 Dmytro Shteflyuk
# License:: Distributes under the same terms as Ruby
# Version:: 0.4.0-r1065
# Website:: http://kpumuk.info/projects/ror-plugins/sphinx [^]
Tags No tags attached.
Attached Files

- Relationships

-  Notes
(0000227)
kpumuk (developer)
2008-05-08 07:50

Implemented in r1262.
(0000644)
kpumuk (developer)
2009-11-27 12:28

Closed a long time ago

- Issue History
Date Modified Username Field Change
2008-02-06 17:14 colin New Issue
2008-02-06 17:15 colin Issue Monitored: colin
2008-05-08 07:46 kpumuk Status new => assigned
2008-05-08 07:46 kpumuk Assigned To => kpumuk
2008-05-08 07:50 kpumuk Status assigned => resolved
2008-05-08 07:50 kpumuk Fixed in Version => 0.9.8-svn
2008-05-08 07:50 kpumuk Resolution open => fixed
2008-05-08 07:50 kpumuk Note Added: 0000227
2009-11-27 12:28 kpumuk Note Added: 0000644
2009-11-27 12:28 kpumuk Status resolved => closed


Copyright © 2000 - 2008 Mantis Group
Powered by Mantis Bugtracker