KingbaseES 分区表与 Oracle 分区表对于空值的处理差异

一、对于null 值处理

1、Oracle

分区字段允许为空,只要存在maxvalue 分区,值就可以插入。

SQL> create table t1(id number,data varchar(9)) partition by range(id)
  2  ( 
  3    partition p1 values less than (1000),
  4    partition p2 values less than (maxvalue)
  5  );

Table created.

SQL> insert into t1(data) values('a');

1 row created.

SQL> commit;

Commit complete.

SQL> select * from t1 partition(p2);

        ID DATA
---------- ---------
           a

2、KingbaseES

允许分区列值为空,但需要 Default 分区

test=# create table t1(id integer,name text) partition by range(id);
CREATE TABLE
test=# create table t1_p1 partition of t1 for values from (minvalue) to (1000);
CREATE TABLE
test=# create table t1_p2 partition of t1 for values from (1000) to (maxvalue);
CREATE TABLE
test=# 
test=# insert into t1(name) values('a');
ERROR:  no partition of relation "t1" found for row
DETAIL:  Partition key of the failing row contains (id) = (null).

test=# create table t1_default partition of t1 default;
CREATE TABLE
test=# insert into t1(name) values('a');
INSERT 0 1

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值