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!