ts_token_type()
是一个系统函数,返回一个包含指定解析器可以识别的每种标记类型的描述的表。
ts_token_type()
在 PostgreSQL 8.3 中添加。
用法
ts_token_type (parser_name
text
) →
setof record (tokid
integer
,alias
text
,description
text
)
ts_token_type (parser_oid
oid
) →
setof record (tokid
integer
,alias
text
,description
text
)
ts_token_type()
主要用于允许直接测试文本搜索解析器。
更改历史记录
- PostgreSQL 8.3
- 添加 (提交 140d4ebc)
示例
ts_token_type()
的基本用法示例
postgres=# SELECT * FROM ts_token_type('default') ; tokid | alias | description -------+-----------------+------------------------------------------ 1 | asciiword | Word, all ASCII 2 | word | Word, all letters 3 | numword | Word, letters and digits 4 | email | Email address ... (23 rows)