排序规则collation相关报错信息整理

排序规则collation相关报错信息整理

使用场景报错

1,
GAUSS-00058: “collations are not supported by type %s”
错误原因:collation与类型不匹配,类型问题。
解决办法:用户检查语句中的类型,collate仅支持字符相关类型。
示例:

postgres=# create table t1(a int collate "C");
ERROR:  collations are not supported by type integer
LINE 1: create table t1(a int collate "C");^

2,
GAUSS-00092: “collation mismatch between implicit collations ‘%s’ and ‘%s’”
GAUSS-00093: “collation mismatch between explicit collations ‘%s’ and ‘%s’”
错误原因:两个字符集不能进行隐式/显式转换。
解决办法:字符集转换时要保证两者之间是兼容的。
示例:

postgres=# create table t1(a text collate "C");
NOTICE:  The 'DISTRIBUTE BY' clause is not specified. Using round-robin as the distribution mode by default.
HINT:  Please use 'DISTRIBUTE BY' clause to specify suitable data distribution column.
CREATE TABLE
postgres=# create table t2(a text collate "POSIX");
NOTICE:  The 'DISTRIBUTE BY' clause is not specified. Using round-robin as the distribution mode by default.
HINT:  Please use 'DISTRIBUTE BY' clause to specify suitable data distribution column.
CREATE TABLE
postgres=# select * from t1 union select * from t2;
ERROR:  collation mismatch between implicit collations "C" and "POSIX"
LINE 1: select * from t1 union select * from t2;^
HINT:  You can choose the collation by applying the COLLATE clause to one or both expressions.
postgres=# select * from t1 where a collate "C" > 'abc' collate "POSIX";
ERROR:  collation mismatch between explicit collations "C" and "POSIX"
LINE 1: select * from t1 where a collate "C" > 'abc' collate "POSIX"...^

3,
GAUSS-00191: “recursive query ‘%s’ column %d has collation ‘%s’ in non-recursive term but collation ‘%s’ overall”
错误原因:递归查询中的列的字符集和非递归查询的列的字符集不一致。
解决办法:将非递归查询的输出字符集转换成递归查询的输出字符集。
示例:

postgres=# WITH RECURSIVE foo(x) AS
postgres-#    (SELECT x FROM (VALUES('a' COLLATE "C"),('b')) t(x)
postgres(#    UNION ALL
postgres(#    SELECT (x || 'c') COLLATE "POSIX" FROM foo WHERE length(x) < 10)
postgres-# SELECT * FROM foo;
ERROR:  recursive query "foo" column 1 has collation "C" in non-recursive term but collation "POSIX" overall
LINE 2:    (SELECT x FROM (VALUES('a' COLLATE "C"),('b')) t(x)^
HINT:  Use the COLLATE clause to set the collation of the non-recursive term.

4,
GAUSS-00506: “new collation (%s) is incompatible with the collation of the template database (%s)”
错误原因:在创建数据库语法中,指定新数据库使用的字符集与template0模板数据库的字符集不匹配。
解决办法:请使用命令"show lc_collate;"检查template0模板数据库的字符集,并修改当前创建数据库指定的字符集。
示例:

postgres=# \lList of databasesName    | Owner | Encoding |   Collate   |    Ctype    | Access privileges
-----------+-------+----------+-------------+-------------+-------------------postgres  | jack  | UTF8     | en_US.UTF-8 | en_US.UTF-8 |template0 | jack  | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/jack          +|       |          |             |             | jack=CTc/jacktemplate1 | jack  | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/jack          +|       |          |             |             | jack=CTc/jack
(3 rows)postgres=# create database testdb LC_COLLATE='zh_CN.utf8';
ERROR:  new collation (zh_CN.utf8) is incompatible with the collation of the template database (en_US.UTF-8)
HINT:  Use the same collation as in the template database, or use template0 as template.

5,
GAUSS-00551: “could not determine which collation to use for view column ‘%s’”
错误原因:对于视图的列无法决策使用哪种排序规则。
解决办法:使用COLLATE子句指定排序规则。
示例:

postgres=# create view v1 as select t1.a || t2.a from t1,t2;
ERROR:  could not determine which collation to use for view column "?column?"
HINT:  Use the COLLATE clause to set the collation explicitly.

6,
GAUSS-00908: “column collation mismatch in ALTER TABLE EXCHANGE PARTITION”
错误原因:ALTER TABLE EXCHANGE PARTITION语句执行表的列排序不匹配。
解决办法:建议检查ALTER TABLE EXCHANGE PARTITION语句执行的表是否有相同的列排序,否则不能执行。
示例:

postgres=# create table t3 (a int,b text collate "C")
postgres-# with (orientation = column,compression=middle)
postgres-# distribute by hash (a);
CREATE TABLE
postgres=# create table t4 (a int,b text)
postgres-# with (orientation = column,compression=middle)
postgres-# distribute by hash (a)
postgres-# partition by range(b)(
postgres(# partition p1 values less than('a'),
postgres(# partition p2 values less than('h'),
postgres(# partition p3 values less than(maxvalue));
CREATE TABLE
postgres=# alter table t4 exchange partition (p3) with table t3;
ERROR:  column collation mismatch in ALTER TABLE EXCHANGE PARTITION

7,
GAUSS-01058: “no collation was derived for column ‘%s’ with collatable type %s”
错误原因:属性列支持attcollation但是对应的attcollation无效,导致无法正常创建heap表格。
解决办法:检查创建表格时属性列关于collation定义的有效性。
示例:

postgres=# create table t5 as select a from t1 union all select a from t2;
ERROR:  no collation was derived for column "a" with collatable type text
HINT:  Use the COLLATE clause to set the collation explicitly.

8,
GAUSS-01280: “unique index columns must contain the partition key and collation must be default collation”
错误原因:唯一索引列须包含分区键,排序方式须为默认方式。
解决办法:检查唯一索引列,须包含分区键,排序方式须为默认方式。
示例:

postgres=# create table t6 (a int,b text collate "C")
postgres-# distribute by hash (a)
postgres-# partition by range(b)(
postgres(# partition p1 values less than('a'),
postgres(# partition p2 values less than('h'),
postgres(# partition p3 values less than(maxvalue));
CREATE TABLE
postgres=# alter table t6 add constraint t6_unique_key primary key (a);
ERROR:  unique index columns must contain the partition key and collation must be default collation
postgres=# alter table t6 add constraint t6_unique_key unique (a,b);
NOTICE:  ALTER TABLE / ADD UNIQUE will create implicit index "t6_unique_key" for table "t6"
ALTER TABLE

9,
GAUSS-01289: “collation ‘%s’ does not exist”
错误原因:索引的排序模式不存在。
解决办法:检查索引的排序模式是否正确。
示例:

postgres=# create table t7(c1 int,c2 text)
postgres-# partition by range (c2)(
postgres(# partition p0 values less than ('a'),
postgres(# partition p1 values less than ('b'),
postgres(# partition p2 values less than (maxvalue));
NOTICE:  The 'DISTRIBUTE BY' clause is not specified. Using round-robin as the distribution mode by default.
HINT:  Please use 'DISTRIBUTE BY' clause to specify suitable data distribution column.
CREATE TABLE
postgres=# create unique index t7_idx on t7 (c2 COLLATE "xxxx") local(
postgres(# partition p0,partition p1,partition p2);
ERROR:  collation "xxxx" does not exist

10,
GAUSS-01296: “could not determine which collation to use for index expression”
错误原因:无法决定在表达式索引中使用哪种排序方式。
解决办法:需要在创建表达式索引时指定排序方式。
示例:

postgres=# create table t8 (a text collate "C", b text collate case_insensitive);
NOTICE:  The 'DISTRIBUTE BY' clause is not specified. Using round-robin as the distribution mode by default.
HINT:  Please use 'DISTRIBUTE BY' clause to specify suitable data distribution column.
CREATE TABLE
postgres=# select collation for(ifnull(a,b)) from t8;pg_collation_for
------------------(1 row)
postgres=# create index t8_idx on t8(ifnull(a,b));
ERROR:  could not determine which collation to use for index expression
HINT:  Use the COLLATE clause to set the collation explicitly.

11,
GAUSS-01785: “collation ‘%s’ for encoding ‘%s’ does not exist”
错误原因:对应于GetDatabaseEncodingName()所得到的编码方法并不支持NameListToString(name)所对应的字符集。
解决办法:查询手册确认当前系统所支持的字符集以及相应的编码方式。
示例:

postgres=# select 'a' collate "dummy";
ERROR:  collation "dummy" for encoding "UTF8" does not exist
LINE 1: select 'a' collate "dummy";^

12,
GAUSS-02102: “could not determine which collation to use for regular expression”
错误原因:对于正则表达式,无法确定合适的排序规则。
解决办法:请检查正则表达式的调用。
示例:

postgres=# insert into t8 values('a','b');
INSERT 0 1
postgres=# select regexp_matches(ifnull(a,b),'[Ab]') from t8;
ERROR:  could not determine which collation to use for regular expression
HINT:  Use the COLLATE clause to set the collation explicitly.
CONTEXT:  referenced column: regexp_matches

13,
GAUSS-02103: “nondeterministic collations are not supported for regular expressions”
错误原因:对于正则表达式,不支持不确定行为的排序规则。
解决办法:手动指定为确定行为的排序规则。
示例:

postgres=# select regexp_like('abcd' collate case_insensitive,'[A-D]') from t8;
ERROR:  nondeterministic collations are not supported for regular expressions
CONTEXT:  SQL function "regexp_like" statement 1
referenced column: regexp_like

14,
GAUSS-02952: “could not determine which collation to use for string %s”
%s可以是comparison,hashing,searching
错误原因:存在多个collation造成冲突,解析器无法决定使用哪个。
解决办法:手动指定COLLATE collation_name。
示例:

postgres=# select a=b from t8;
ERROR:  could not determine which collation to use for string comparison
HINT:  Use the COLLATE clause to set the collation explicitly.
postgres=# select hashtext(ifnull(a,b)) from t8;
ERROR:  could not determine which collation to use for string hashing
HINT:  Use the COLLATE clause to set the collation explicitly.
CONTEXT:  referenced column: hashtext
postgres=# select instr(a,b) from t8;
ERROR:  could not determine which collation to use for string searching
HINT:  Use the COLLATE clause to set the collation explicitly.
CONTEXT:  referenced column: instr

15,
GAUSS-03164: “could not determine which collation to use for ILIKE”
错误原因:ilike语句中,存在多个collation造成冲突,解析器无法决定使用哪个。
解决办法:手动指定COLLATE collation_name。
示例:

postgres=# select ifnull(a,b) ilike 'A%' from t8;
ERROR:  could not determine which collation to use for ILIKE
HINT:  Use the COLLATE clause to set the collation explicitly.

16,
GAUSS-03318: “nondefault collations are not supported on this platform”
错误原因:非缺省的collation不支持,仅出现在不支持locale_t的平台。
解决办法:使用平台缺省的collation。

17,
GAUSS-05180: “encoding ‘%s’ not supported by collation ‘%s’”
错误原因:排序规则不支持当前数据库的字符编码。
解决办法:查阅产品文档,选择支持当前字符编码的排序规则。
示例:

postgres=# CREATE DATABASE test_db ENCODING 'eucjis2004' LC_CTYPE='C' LC_COLLATE='C' template = template0;
CREATE DATABASE
postgres=# \c test_db
Non-SSL connection (SSL connection is recommended when requiring high-security)
You are now connected to database "test_db" as user "jack".
test_db=# select 'a' collate case_insensitive;
ERROR:  encoding "EUC_JIS_2004" not supported by collation "case_insensitive"
LINE 1: select 'a' collate case_insensitive;^

18,
GAUSS-05246: “Collation ‘case_insensitive’ for DDL statements cannot be used in upgrade mode.”
错误原因:处于升级模式无法使用的排序规则。
解决办法:升级模式结束后使用。

19,
GAUSS-06506: “could not determine which collation to use for bound expression of %s”
错误原因:分区边界表达式排序规则无效或与分区键排序规则不一致。
解决办法:指定排序规则与分区键一致。
示例:

postgres=# create table t9(c1 int,c2 text collate "C")
postgres-# partition by range (c2)(
postgres(# partition p0 values less than ('a' collate "POSIX"),
postgres(# partition p1 values less than ('b'),
postgres(# partition p2 values less than (maxvalue));
ERROR:  could not determine which collation to use for bound expression of partitioning column "c2" in partition "p0"
HINT:  the collation of bound expression must be euqal to the collation of partitioning column

20,
GAUSS-07314: “could not determine which collation to use for %s function”
%s可以是lower(),upper(),initcap()
错误原因:函数调用时,存在多个collation造成冲突,解析器无法决定使用哪个。
解决办法:应该使用COLLATE子句显式设定collation。

postgres=# select upper(ifnull(a,b)) from t8;
ERROR:  could not determine which collation to use for upper() function
HINT:  Use the COLLATE clause to set the collation explicitly.
CONTEXT:  referenced column: upper
postgres=# select lower(ifnull(a,b)) from t8;
ERROR:  could not determine which collation to use for lower() function
HINT:  Use the COLLATE clause to set the collation explicitly.
CONTEXT:  referenced column: lower
postgres=# select initcap(ifnull(a,b)) from t8;
ERROR:  could not determine which collation to use for initcap() function
HINT:  Use the COLLATE clause to set the collation explicitly.
CONTEXT:  referenced column: initcap
特性相关

特性相关报错,受制于特性约束,用户不可见。

1,
GAUSS-00688: “inherited column ‘%s’ has a collation conflict”
GAUSS-00691: “column ‘%s’ has a collation conflict”
GAUSS-00732: “child table ‘%s’ has different collation for column ‘%s’”
GAUSS-01538: “attribute ‘%s’ of relation ‘%s’ does not match parent’s collation”
场景说明:inherits场景不支持。

2,
GAUSS-01311: “collation attribute ‘%s’ not recognized”
GAUSS-01314: “collation ‘%s’ for encoding ‘%s’ already exists in schema ‘%s’”
GAUSS-01315: “collation ‘%s’ already exists in schema ‘%s’”
GAUSS-01791: “collation ‘%s’ for encoding ‘%s’ already exists”
GAUSS-01792: “collation ‘%s’ already exists”
场景说明:create collation语法不支持。

内部错误

非预期错误,请联系工程师分析解决。

1,GAUSS-00340: “cache lookup failed for collation %u”
2,GAUSS-01706: “no collation was derived for column ‘%s’ with collatable type %s”
3,GAUSS-01793: “could not find tuple for collation %u”
4,GAUSS-01906: “collation with OID %u does not exist”
5,GAUSS-02099: “cannot get collation for untransformed sublink”
6,GAUSS-02100: “cannot set collation for untransformed sublink”
7,GAUSS-05659: “could not open collator for locale ‘%s’: %s”
8,GAUSS-07313: “case conversion failed: %s”
9,GAUSS-07514: “could not open ICU converter for encoding ‘%s’: %s”
10,GAUSS-07515: “ICUToUChar failed: %s”
11,GAUSS-07516: “ICUFromUChar failed: %s”
12,GAUSS-07461: “collation failed: %s”
13,GAUSS-07462: “sort key generation failed: %s”
14,GAUSS-07510: “Collations are not supported by type %s.”
15,GAUSS-07513: “collations with different collate and ctype values are not supported by ICU”
16,GAUSS-07640: “encoding ‘%s’ not supported by ICU”

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/42841.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

MySQL NULL 值处理

MySQL NULL 值处理 引言 在MySQL数据库中,NULL值是一个特殊的概念,它代表一个未知的或不确定的值。正确处理NULL值对于保证数据库的准确性和查询的有效性至关重要。本文将详细介绍MySQL中NULL值的处理方法,包括在查询、插入、更新和比较操作中的注意事项。 目录 NULL值的…

【社招】【天翼云】基础测试中心招聘总览

一、研发专家&#xff08;平台架构&#xff09; 二、高级后端开发&#xff08;平台开发方向&#xff09; 三、高级前端开发工程师 四、高级产品经理 五、高性能网络测试工程师 六、操作系统测试工程师 七、DPU测试工程师 非猎头&#xff0c;合同制&#xff0c;可以发邮箱&…

【SOLID原则前端中的应用】接口隔离原则(Interface Segregation Principle,ISP)- vue3示例

接口隔离原则&#xff08;Interface Segregation Principle&#xff0c;ISP&#xff09;在Vue 3中的应用 接口隔离原则&#xff08;Interface Segregation Principle&#xff0c;ISP&#xff09;规定&#xff0c;客户端不应该被迫依赖于它不使用的方法。 换句话说&#xff0c;…

图形编辑器基于Paper.js教程07:鼠标画直线或移动路径

探索Paper.js: 使用鼠标绘制直线和轨迹 在数字图形设计和Web应用开发中&#xff0c;提供一个直观和互动的界面供用户绘制图形是极为重要的。Paper.js是一款功能强大的JavaScript库&#xff0c;它使得在HTML5 Canvas上绘制矢量图形变得简单快捷。本文将介绍如何使用Paper.js实现…

ubuntu cp 命令 拷贝文件

基本语法&#xff1a; cp [options] source destination source&#xff1a;源文件或目录 destination&#xff1a;目标文件或目录。如果是目录&#xff0c;则会将源文件复制到该目录下&#xff0c;并保持原有文件名。 以下是一些常用的cp命令选项&#xff1a; -f&#xff1…

DynamoDB常用权限分类详解

DynamoDB是AWS提供的一种完全托管的NoSQL数据库服务。为了确保数据的安全性和访问控制,AWS提供了一套细粒度的权限管理机制。本文将详细介绍DynamoDB的常用权限分类,并提供相应的JSON策略示例。 1. 表级权限 表级权限控制对整个DynamoDB表的访问。 1.1 读取权限 允许用户…

LT86101UXE 国产原装 HDMI2.0 / DVI中继器方案 分辨率 4Kx2K 用于多显示器 DVI/HDMI电缆扩展模块

1. 描述 Lontium LT86101UXE HDMI2.0 / DVI中继器特性高速中继器符合HDMI2.0/1.4规范,最大6 gbps高速数据率、自适应均衡RX输入和pre-emphasized TX输出支持长电缆应用程序,没有晶体在船上保存BOM成本,内部灵活的PCB TX巷交换路由。 LT86101UXE HDMI2.0/DVI中继器自动检测线缆损…

新时代【机器学习】与【Pycharm】:【随机数据生成】与智能【股票市场分析】

目录 第一步&#xff1a;准备工作 1.1 安装必要的库 小李的理解&#xff1a; 1.2 导入库 小李的理解&#xff1a; 第二步&#xff1a;生成和准备数据 2.1 生成随机股票数据 小李的理解&#xff1a; 2.2 数据探索与可视化 小李的理解&#xff1a; 2.3 数据处理 小李…

累计融资9000万,服务超4000万人,Empathy的企业发展和运作模式解析

干货抢先看 1. 老龄化加深背景下&#xff0c;国内对亲人离世后的关怀服务尚未受到行业重视。以Empathy为代表的数字平台通过提供一站式服务&#xff0c;获得了包括全球六大寿险公司的战略投资。 2. 结合数字技术&#xff0c;Empathy为亲人离世的家庭提供从葬礼策划、福利申请、…

可编程直流电源的恒压模式(CV)和恒流模式(CC)

本文介绍可编程直流电源的恒压模式&#xff08;CV&#xff09;和恒流模式&#xff08;CC&#xff09;。 可编程直流电源在硬件开发过程中经常被用到&#xff0c;通常&#xff0c;它有2种模式&#xff0c;恒压模式&#xff08;CV&#xff09;和恒流模式&#xff08;CC&#xff…

桌面记事便签哪款好 好用的桌面记事本app

很多人喜欢在桌面上记事&#xff0c;尤其是经常使用电脑的上班族&#xff0c;这样查看起来更加方便。但在网上众多的记事软件中&#xff0c;哪款才是最好用的呢&#xff1f; 在众多选择中&#xff0c;敬业签以其出色的功能和用户体验脱颖而出&#xff0c;成为很多人记事的首选…

Debezium报错处理系列之第111篇:Can‘t compare binlog filenames with different base names

Debezium报错处理系列之第111篇:Cant compare binlog filenames with different base names 一、完整报错二、错误原因三、解决方法Debezium从入门到精通系列之:研究Debezium技术遇到的各种错误解决方法汇总: Debezium从入门到精通系列之:百篇系列文章汇总之研究Debezium技…

【MySQL】MySQL索引失效场景

文章目录 前言一、说明举例1. 函数操作与索引失灵2. 数据类型错配3. LIKE操作符与通配符的陷阱4. OR逻辑运算的索引挑战5. 复合索引与最左前缀规则6. 特定比较操作符的局限 二、总结 前言 在数据库管理和优化的天地里&#xff0c;索引如同图书的目录&#xff0c;极大地加速了数…

从IE到Edge:微软浏览器的演变与未来展望

引言 浏览器作为互联网的入口&#xff0c;承载了用户访问网页、进行信息交流和使用网络服务的重要职责。微软作为全球科技巨头&#xff0c;其浏览器产品从最早的Internet Explorer&#xff08;IE&#xff09;到现代的Microsoft Edge&#xff0c;经历了多次演变&#xff0c;见证…

#数据结构 链表

单向链表 1. 概念 单向链表 单向循环链表 双向链表 双向循环链表 解决&#xff1a;长度固定的问题&#xff0c;插入和删除麻烦的问题 1、逻辑结构&#xff1a; 线性结构 2、存储结构&#xff1a; 链式存储 链表就是将 结点 用链串起来的线性表&#xff0c;链就是 结点 中的…

UE C++ 多镜头设置缩放 平移

一.整体思路 首先需要在 想要控制的躯体Pawn上&#xff0c;生成不同相机对应的SpringArm组件。其次是在Controller上&#xff0c;拿到这个Pawn&#xff0c;并在其中设置输入响应&#xff0c;并定义响应事件。响应事件里有指向Pawn的指针&#xff0c;并把Pawn的缩放平移功能进行…

《大语言模型》赵鑫

前言 大模型技术的发展阶段&#xff1a;统计语言模型&#xff0c;神经网络语言模型&#xff0c;预训练语言模型等 谷歌2017 年推出基于注意力机制的Transformer 模型。 OpenAI基于此&#xff0c;开始构建GPT系列模型&#xff0c; GPT-1能够通过“通用文本训练-特定任务微调”的…

Solidity: 引用类型, array, struct

数组 array​ 数组&#xff08;Array&#xff09;是Solidity常用的一种变量类型&#xff0c;用来存储一组数据&#xff08;整数&#xff0c;字节&#xff0c;地址等等&#xff09;。数组分为固定长度数组和可变长度数组两种&#xff1a; 固定长度数组&#xff1a;在声明时指定…

MySQL的慢sql

什么是慢sql 每执行一次sql&#xff0c;数据库除了会返回执行结果以外&#xff0c;还会返回sql执行耗时&#xff0c;以mysql数据库为例&#xff0c;当我们开启了慢sql监控开关后&#xff0c;默认配置下&#xff0c;当sql的执行时间大于10s&#xff0c;会被记录到慢sql的日志文件…

集中管理和分析日志:使用 ELK 套件构建强大的日志管理平台

集中管理和分析日志&#xff1a;使用 ELK 套件构建强大的日志管理平台 日志是监控和调试应用程序和系统的重要工具。集中管理和分析日志可以帮助你快速定位问题、了解系统运行状况和性能&#xff0c;并提高你的日志管理效率。ELK 是一个流行的日志管理解决方案&#xff0c;由 …