All pages
Powered by GitBook
1 of 1

Loading...

mroonga_normalize

This UDF normalizes a given string using Groonga's normalizers, ensuring consistent text processing for accurate indexing and searching.

Syntax

mroonga_normalize(string[, normalizer_name])

Description

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.

Examples

See Also

This page is licensed: CC BY-SA / Gnu FDL

user-defined function
Mroonga storage engine
Creating Mroonga User-Defined Functions
Groonga Normalizer Reference
Creating Mroonga User-Defined Functions
SELECT mroonga_normalize("ABぃ㍑");
+-------------------------------+
| mroonga_normalize("ABぃ㍑")   |
+-------------------------------+
| abぃリットル                  |
+-------------------------------+