Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The Thinking-Sphinx documentation for "Filtering for String Attributes" tells us to do the following.

In define_index:

has "CRC32(category)", :as => :category, :type => :integer

And using it for search:

Article.search 'pancakes', :with => {
  :category => 'Ruby'.to_crc32
}

This all works fine, however in my define_index I want to create a facets on association's column:

has "CRC32(something.other_thing.category)", :as => :category, :type => :integer, :facet => true

This doesn't work, and Sphinx lets me know about it: Unknown column 'something.other_thing.category'

The natural think for me was to place the blame on incorrect association chain, however loosing "CRC32" bit, partially works (The facet names are displayed, yet I can not apply them due to CRC32 requirement, which is documented by Sphinx):

# partially works
has something.other_thing.category, :as => :category, :facet => true

Any ideas on what can be done in this interesting situation? Many Thanks!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.