]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Improve error message about valid value for distance in phrase operator.
authorFujii Masao <fujii@postgresql.org>
Wed, 25 Aug 2021 02:43:56 +0000 (11:43 +0900)
committerFujii Masao <fujii@postgresql.org>
Wed, 25 Aug 2021 02:45:15 +0000 (11:45 +0900)
commit81fa1bce2770ee9c9ffe92baa7c5abae70939c59
tree8403fb6e35fd860a7b7100837a8c3ac4f057907d
parent071146184a59de4ac20f5508903fdbc21f963b6c
Improve error message about valid value for distance in phrase operator.

The distance in phrase operator must be an integer value between zero
and MAXENTRYPOS inclusive. But previously the error message about
its valid value included the information about its upper limit
but not lower limit (i.e., zero). This commit improves the error message
so that it also includes the information about its lower limit.

Back-patch to v9.6 where full-text phrase search was supported.

Author: Kyotaro Horiguchi
Reviewed-by: Fujii Masao
Discussion: https://postgr.es/m/20210819.170315.1413060634876301811.horikyota.ntt@gmail.com
src/backend/utils/adt/tsquery.c