Issue with sql_range_step in shinx.conf with Sphinx?

I've got a similar problem and got it solved by using ranged query for both: index and document queries Instead of: sql_query = SELECT id, * FROM ann_annonce use: sql_query_range = SELECT MIN(id),MAX(id) FROM ann_annonce sql_query = SELECT id, * FROM ann_annonce WHERE id>=$start and id.

I've got a similar problem and got it solved by using ranged query for both: index and document queries. Instead of: sql_query = SELECT id, * FROM ann_annonce; use: sql_query_range = SELECT MIN(id),MAX(id) FROM ann_annonce sql_query = SELECT id, * FROM ann_annonce WHERE id>=$start and idYour question is a bit old, but hopefully people this solution useful.

I've got a similar problem and got it solved by using ranged query for both: index and document queries. After this it stops complaining about the range and attributes get indexed as well. Looks like a bug in sphinx.

Your question is a bit old, but hopefully people this solution useful.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions