对不起基本问题。
我有一个包含以下列的表。
Column | Type | Modifiers
--------+---------+-----------
id | integer |
doc_id | bigint |
text | text |
我只想要包含“其他事件”字样的观察
SELECT * FROM eightks\d
WHERE to_tsvector(text) @@ to_tsquery('other_events')
我知道ts_vector的长度有限制。
错误消息
ERROR: string is too long for tsvector (2368732 bytes, max 1048575 bytes)
如何将文本列转换为ts_vector并解决我的大小限制问题?或者,如何排除最大尺寸的观察?
Postgres版本9.3.5.0
以下是对限制limit
的引用由于