Commit 617e93cb authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

test: return the input string if no stemmer is available.

parent 0b6a2890
......@@ -12,3 +12,6 @@ deur boekjes stuiter stuiter auto'
SELECT stem_word("english", "cars#bars#opening");
stem_word("english", "cars#bars#opening")
car bar open
SELECT stem_word("xyz", "Xxx Yyys Zzzer");
stem_word("xyz", "Xxx Yyys Zzzer")
Xxx Yyys Zzzer
......@@ -18,4 +18,5 @@ error 1123; SELECT stem_word();
error 1123; SELECT stem_word("dutch");
SELECT stem_word("dutch", "deuren");
SELECT stem_word("dutch", "deuren boekjes;stuiter stuiteren auto's");
SELECT stem_word("english", "cars#bars#opening");
\ No newline at end of file
SELECT stem_word("english", "cars#bars#opening");
SELECT stem_word("xyz", "Xxx Yyys Zzzer");
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment