gpt4 book ai didi

PostgreSQL 全文搜索 西类牙语字符 Ñ

转载 作者:行者123 更新时间:2023-11-29 11:46:56 24 4
gpt4 key购买 nike

在使用 PostgreSQL 对包含西类牙字符“Ñ”的文本进行全文搜索时,我遇到了一个问题

当我尝试标记西类牙语单词“AÑO”(年份)时,根据输入是大写还是小写,我得到以下结果:

SELECT to_tsvector('spanish','AÑO'),to_tsquery('spanish','año')
"to_tsvector" "to_tsquery"
"'aÑo':1" "'año'"

如您所见,结果不一样并且区分大小写,因此如果它们包含此字符,我的应用程序全文搜索查询将区分大小写。

有什么办法可以解决这个问题吗?我一直在搜索有关全文搜索的 PostgreSQL 文档,但我不知道如何在已安装的词典上更改此行为。

非常感谢。马蒂

最佳答案

to_tsvectorÑ 转换为ñ 的能力取决于语言环境,特别是lc_ctype。假设您的数据库正在使用 LC_CTYPE,例如 C,其知识仅限于 US-ASCII

LC_CTYPE 与 Unicode 兼容的示例:

test=> show lc_ctype;  lc_ctype   ------------- fr_FR.UTF-8(1 row)test=> SELECT to_tsvector('spanish','AÑO'),to_tsquery('spanish','año'); to_tsvector | to_tsquery -------------+------------ 'año':1     | 'año'(1 row)

Note that the downcasing is what you expect.

Opposite example with C:

creation:

CREATE DATABASE cc lc_ctype 'C' template template0;

注意问题中没有小写:

cc=> show lc_ctype ; lc_ctype ---------- C(1 row)cc=> SELECT to_tsvector('spanish','AÑO'),to_tsquery('spanish','año'); to_tsvector | to_tsquery -------------+------------ 'aÑo':1     | 'año'(1 row)

关于PostgreSQL 全文搜索 西类牙语字符 Ñ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45567951/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com