pgsql: doc: Fix typo in rule-system view example - Mailing list pgsql-committers

From Fujii Masao
Subject pgsql: doc: Fix typo in rule-system view example
Date
Msg-id E1whFnl-0004On-1c@gemulon.postgresql.org
Whole thread
List pgsql-committers
doc: Fix typo in rule-system view example

Commit dcb00495236 accidentally changed the final expanded query's
condition to > 2 while rewriting the example into SQL operator notation.

The original query and the preceding rewritten forms all use >= 2,
and view expansion should preserve that qualification. This commit
changes the final condition from > 2 to >= 2.

Backpatch to all supported versions.

Reported-by: Yaroslav Saburov <y.saburov@gmail.com>
Author: Fujii Masao <masao.fujii@gmail.com>
Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
Discussion: https://postgr.es/m/178248467618.108999.9966122434342474006@wrigleys.postgresql.org
Backpatch-through: 14

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/0237f1480a0d618f60d8dd4eca097e99aa7256d9

Modified Files
--------------
doc/src/sgml/rules.sgml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)


pgsql-committers by date:

Previous
From: Jeff Davis
Date:
Subject: pgsql: unicode_case.c: change API to signal UTF8 decoding error.
Next
From: Fujii Masao
Date:
Subject: pgsql: doc: Fix typo in rule-system view example