BM25搜索问题

CREATE INDEX my_user_index ON my_user using bm25( “name”);
/* ERROR: relation “my_user_index” already exists /
/
受影响记录行数: 0 已找到记录行: 0 警告: 0 持续时间 0 的 1 查询: 0.000 秒. /
select * from my_user ORDER BY name <&> ‘张三’ DESC LIMIT 3;
/
ERROR: No BM25 index is used to the scan, please check the plan. /
/
受影响记录行数: 0 已找到记录行: 0 警告: 0 持续时间 0 的 1 查询: 0.000 秒. */

my_user_index是有的。使用的是6.0为啥子搜索不到。数据也是存在的

select * from my_user ORDER BY name <&> ‘张三’ DESC LIMIT 3;//不行

select * from {表名称} ORDER BY {文档列名称} <&> {查询词} DESC LIMIT n; //这种SQL不行

SELECT /+ indexscan (my_user my_user_index*)*/ *, name <&> ‘张三’ AS score FROM my_user ORDER BY name <&> ‘张三’ DESC;

//这条查询又能查询到。

6.0.0-RC1和7.0.0-RC2均未复现。请问可以提供更多信息吗?

如果可以提供一下建表语句,或者整体复现流程会更有助于问题定位