暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

PG问题,ERROR: index row requires 8600 bytes, maximum size is 8191,怎么办?

原创 墨天轮问答平台 2021-07-26
2975

问题描述

PG问题,ERROR: index row requires 8600 bytes, maximum size is 8191,怎么办?

专家解答

  • hash index
    hash value长度固定

  • function index
    func(col), 查询时也使用func(col)

  • partial index
    index on tbl (col) where col_length < 8192
    index on tbl (1) where col_length >= 8192
    select x on tbl where … and col_length < 8192 union all … and col_length >= 8192

「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论