# CREATE INDEX idx ON tab USING fulltext(col);
# SELECT * FROM tab WHERE col @@ 'hoge・hoge';
col
---------------------
hoge・hoge
今日hoge・hoge test
(2 rows)
# CREATE INDEX idx ON tab USING fulltext(col);
# SELECT * FROM tab WHERE col @@ 'hoge・hoge';
col
---------------------
hoge・hoge
今日hoge・hoge test
(2 rows)
MySQLでSennaを使っていましたが、
このたび初めてpostgres8.2.4にて
ludia 1.1.0 senna 1.0.7
を導入いたしました。
検索時に
select * from table01 where
body @@ 'hoge・hoge'
のように「・」「・」が含まれていると
ヒットしません。
こちらはバグなのでしょうか。
それとも仕様でしょうか。