Ruby on rails Cassandra Rails无法执行多个列过滤器

Ruby on rails Cassandra Rails无法执行多个列过滤器,ruby-on-rails,ruby,ruby-on-rails-3,cassandra,cequel,Ruby On Rails,Ruby,Ruby On Rails 3,Cassandra,Cequel,Rails Cassandra无法处理多个列的筛选器 我的情态 class Template include Cequel::Record key :id,:int,index:true column :u_id,:uuid,:auto=>true column :user_id, :int,index:true column :code_type,:text,index:true column :name, :text column :code_text,

Rails Cassandra无法处理多个列的筛选器

我的情态

class Template 
  include Cequel::Record
  key :id,:int,index:true
  column :u_id,:uuid,:auto=>true
  column :user_id, :int,index:true
  column :code_type,:text,index:true
  column :name, :text
  column :code_text, :text
  timestamps
end
Template.where(:code_type=>"job_html_template",:user_id=>1).allow_filtering!

Cequel::Record::IllegalQuery: Can't scope by more than one indexed column in the same query

I am using  cequel (3.0.0) 

谁能帮我一下这有什么问题吗?

。。。。在下面的链接中,注释说明过滤器中只允许使用一个二级索引。注释说明从Cassandra 3.6开始,
可用
@undefined\u变量我安装了Cassandra 3.11的最新版本,但仍然出现相同错误