#openGauss #入门 #安装 #数据库 #开源
知识来源:docs-opengauss.osinfra.cn/zh/
-
场景3:“插入数据不满足hll数据结构要求”
当用户给hll类型的字段插入数据的时候,必须保证插入的数据满足hll数据结构要求,如果解析后不满足就会报错。如下示例中: 插入数据'E\\1234'时,该数据不满足hll数据结构,不能解析成功因此失败报错。
sql 代码解读复制代码openGauss=# create table test(id integer, set hll); openGauss=# insert into test values(1, 'E\\1234'); ERROR: not a hll type, size=6 is not enough openGauss=# drop table test;
#openGauss #入门 #安装 #数据库 #开源