Cassandra 3.7 を使用しており、SASI インデックスを持つテキスト列があります。真ん中のどこかに「%」文字を含む列の値を見つけたいとしましょう。問題は、「%」が LIKE 句のコマンド文字であることです。次のようなクエリで「%」文字をエスケープする方法はLIKE '%%%'
?
テストスクリプトは次のとおりです。
DROP keyspace if exists kmv;
CREATE keyspace if not exists kmv WITH REPLICATION = { 'class' : 'SimpleStrategy', 'replication_factor':'1'} ;
USE kmv;
CREATE TABLE if not exists kmv (id int, c1 text, c2 text, PRIMARY KEY(id, c1));
CREATE CUSTOM INDEX ON kmv.kmv ( c2 ) USING 'org.apache.cassandra.index.sasi.SASIIndex' WITH OPTIONS = {
'analyzed' : 'true',
'analyzer_class' : 'org.apache.cassandra.index.sasi.analyzer.NonTokenizingAnalyzer',
'case_sensitive' : 'false',
'mode' : 'CONTAINS'
};
INSERT into kmv (id, c1, c2) values (1, 'f22', 'qwe%asd');
SELECT c2 from kmv.kmv where c2 like '%$$%$$%';
選択クエリは何も返しません。