is it possible to preview result of morphology transformation?

let’s say i’d like to see to what stem form is word rejections transformed. is there any way for me to do it via sphinxql, using indextool etc?

thank you!

an easy way is with CALL KEYWORDS - but do need the name of a index with morphology enabled

sphinxQL>call keywords('rejections','sample8');
+------+------------+------------+
| qpos | tokenized  | normalized |
+------+------------+------------+
| 1    | rejections | reject     |
+------+------------+------------+
1 row in set (0.002 sec)

that’s it. thank you Barry!