小编Dat*_*tor的帖子

postgres 表的分区键失败错误

错误:未找到行的关系“test_table”分区详细信息:失败行的分区键包含 (start_time) = (2021-04-25 00:00:00)。SQL状态:23514

我正在插入一个数据,其中有一个列开始时间 (2021-04-25 00:00:00)

这是我的架构

CREATE TABLE test_table (
    start_time timestamp NULL,
)
PARTITION BY RANGE (start_time);
Run Code Online (Sandbox Code Playgroud)

sql postgresql partitioning

7
推荐指数
1
解决办法
2万
查看次数

标签 统计

partitioning ×1

postgresql ×1

sql ×1