LightDB-A sequence支持MAXVALUE最大值与Oracle相同

功能介绍

Oracle数据库在创建sequence的时候可以支持设置maxvalue 为9999999999999999999999999999,这样的SQL在LightDB-A 23.3版本之前都是执行失败的。为了方便Oracle用户迁移到LightDB-A上,在LightDB-A 23.3版本上,增加了sequence支持maxvalue设置为9999999999999999999999999999的语法兼容。
如果设置的maxvalue的值大于INT64_MAX(9223372036854775807),则设置maxvalue为sequence类型所对应的最大值。

使用说明

  1. 创建sequence时设置maxvalue为9999999999999999999999999999
postgres=# create sequence s1 maxvalue 9999999999999999999999999999;
CREATE SEQUENCE
postgres=# \d+ s1
                             Sequence "public.s1"
  Type  | Start | Minimum |       Maximum       | Increment | Cycles? | Cache 
--------+-------+---------+---------------------+-----------+---------+-------
 bigint |     1 |       1 | 9223372036854775807 |         1 | no      |    20

postgres=# 
  1. 修改sequence时设置maxvalue为9999999999999999999999999999
postgres=# create sequence s2 maxvalue 100000;
CREATE SEQUENCE
postgres=# \d+ s2
                       Sequence "public.s2"
  Type  | Start | Minimum | Maximum | Increment | Cycles? | Cache 
--------+-------+---------+---------+-----------+---------+-------
 bigint |     1 |       1 |  100000 |         1 | no      |    20

postgres=# 
postgres=# alter sequence s2 maxvalue 9999999999999999999999999999;
ALTER SEQUENCE
postgres=# \d+ s2
                             Sequence "public.s2"
  Type  | Start | Minimum |       Maximum       | Increment | Cycles? | Cache 
--------+-------+---------+---------------------+-----------+---------+-------
 bigint |     1 |       1 | 9223372036854775807 |         1 | no      |    20

postgres=# 
  1. 当sequence类型为smallint时,设置maxvalue为9999999999999999999999999999
postgres=# create sequence s3 as smallint maxvalue 1000;
CREATE SEQUENCE
postgres=# \d+ s3
                        Sequence "public.s3"
   Type   | Start | Minimum | Maximum | Increment | Cycles? | Cache 
----------+-------+---------+---------+-----------+---------+-------
 smallint |     1 |       1 |    1000 |         1 | no      |    20

postgres=# alter sequence s3 maxvalue 9999999999999999999999999999;
ALTER SEQUENCE
postgres=# \d+ s3
                        Sequence "public.s3"
   Type   | Start | Minimum | Maximum | Increment | Cycles? | Cache 
----------+-------+---------+---------+-----------+---------+-------
 smallint |     1 |       1 |   32767 |         1 | no      |    20

postgres=# 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值