Is it possible to pass params for such a query? ``` create table table_name ( clust1 text, clust2 text, partition text, primary key ((partition), clust1, clust2) ); select * from table_name where partition = 'smth' and (clust1, clust2) in (('smth1', 'smth1'), ('smth2', 'smth2')) ```