This UDF normalizes a given string using Groonga's normalizers, ensuring consistent text processing for accurate indexing and searching.
mroonga_normalize(string[, normalizer_name])mroonga_normalize is a (UDF) included with the . It uses Groonga's normalizer to normalize text. See for details on creating this UDF if required.
Given a string, returns the normalized text.
See the for details on the Groonga normalizers. The default if no normalizer is provided is NormalizerAuto.
This page is licensed: CC BY-SA / Gnu FDL
SELECT mroonga_normalize("ABぃ㍑");
+-------------------------------+
| mroonga_normalize("ABぃ㍑") |
+-------------------------------+
| abぃリットル |
+-------------------------------+