agora inbox for pgsql-committers@postgresql.orghelp / color / mirror / Atom feed
pgsql: doc: Fix "Prev" link, take 2. 6+ messages / 1 participants [nested] [flat]
* pgsql: doc: Fix "Prev" link, take 2. @ 2026-06-18 14:32 Nathan Bossart <nathan@postgresql.org> 0 siblings, 0 replies; 6+ messages in thread From: Nathan Bossart @ 2026-06-18 14:32 UTC (permalink / raw) To: pgsql-committers@lists.postgresql.org doc: Fix "Prev" link, take 2. Commit 6678b58d78 fixed a wrong "Prev" link by changing the link generation code to use [position()=last()] instead of [last()] in the predicate on the union of reverse axes. Unfortunately, that caused documentation builds to take much longer. To fix, combine the "preceding" and "ancestor" steps into one "preceding" step and one "ancestor" step, and revert the predicate back to [last()]. The smaller union evades the libxml2 bug while avoiding the build time regression. Reported-by: Tom Lane <tgl@sss.pgh.pa.us> Tested-by: Tom Lane <tgl@sss.pgh.pa.us> Discussion: https://postgr.es/m/1132496.1781718007%40sss.pgh.pa.us Backpatch-through: 14 Branch ------ master Details ------- https://git.postgresql.org/pg/commitdiff/f0a5c4fbfc42f57a4564b9919c7eb0c52e656fc1 Modified Files -------------- doc/src/sgml/stylesheet-speedup-xhtml.xsl | 52 +++++++++++++++---------------- 1 file changed, 26 insertions(+), 26 deletions(-) ^ permalink raw reply [nested|flat] 6+ messages in thread
* pgsql: doc: Fix "Prev" link, take 2. @ 2026-06-18 14:32 Nathan Bossart <nathan@postgresql.org> 0 siblings, 0 replies; 6+ messages in thread From: Nathan Bossart @ 2026-06-18 14:32 UTC (permalink / raw) To: pgsql-committers@lists.postgresql.org doc: Fix "Prev" link, take 2. Commit 6678b58d78 fixed a wrong "Prev" link by changing the link generation code to use [position()=last()] instead of [last()] in the predicate on the union of reverse axes. Unfortunately, that caused documentation builds to take much longer. To fix, combine the "preceding" and "ancestor" steps into one "preceding" step and one "ancestor" step, and revert the predicate back to [last()]. The smaller union evades the libxml2 bug while avoiding the build time regression. Reported-by: Tom Lane <tgl@sss.pgh.pa.us> Tested-by: Tom Lane <tgl@sss.pgh.pa.us> Discussion: https://postgr.es/m/1132496.1781718007%40sss.pgh.pa.us Backpatch-through: 14 Branch ------ REL_18_STABLE Details ------- https://git.postgresql.org/pg/commitdiff/5562b2657f942113b77bd557234a2ac4d08a49c5 Modified Files -------------- doc/src/sgml/stylesheet-speedup-xhtml.xsl | 52 +++++++++++++++---------------- 1 file changed, 26 insertions(+), 26 deletions(-) ^ permalink raw reply [nested|flat] 6+ messages in thread
* pgsql: doc: Fix "Prev" link, take 2. @ 2026-06-18 14:32 Nathan Bossart <nathan@postgresql.org> 0 siblings, 0 replies; 6+ messages in thread From: Nathan Bossart @ 2026-06-18 14:32 UTC (permalink / raw) To: pgsql-committers@lists.postgresql.org doc: Fix "Prev" link, take 2. Commit 6678b58d78 fixed a wrong "Prev" link by changing the link generation code to use [position()=last()] instead of [last()] in the predicate on the union of reverse axes. Unfortunately, that caused documentation builds to take much longer. To fix, combine the "preceding" and "ancestor" steps into one "preceding" step and one "ancestor" step, and revert the predicate back to [last()]. The smaller union evades the libxml2 bug while avoiding the build time regression. Reported-by: Tom Lane <tgl@sss.pgh.pa.us> Tested-by: Tom Lane <tgl@sss.pgh.pa.us> Discussion: https://postgr.es/m/1132496.1781718007%40sss.pgh.pa.us Backpatch-through: 14 Branch ------ REL_17_STABLE Details ------- https://git.postgresql.org/pg/commitdiff/1fec5ddfdc2d39188cde6cd6494c5e1f9d0a9ddd Modified Files -------------- doc/src/sgml/stylesheet-speedup-xhtml.xsl | 52 +++++++++++++++---------------- 1 file changed, 26 insertions(+), 26 deletions(-) ^ permalink raw reply [nested|flat] 6+ messages in thread
* pgsql: doc: Fix "Prev" link, take 2. @ 2026-06-18 14:32 Nathan Bossart <nathan@postgresql.org> 0 siblings, 0 replies; 6+ messages in thread From: Nathan Bossart @ 2026-06-18 14:32 UTC (permalink / raw) To: pgsql-committers@lists.postgresql.org doc: Fix "Prev" link, take 2. Commit 6678b58d78 fixed a wrong "Prev" link by changing the link generation code to use [position()=last()] instead of [last()] in the predicate on the union of reverse axes. Unfortunately, that caused documentation builds to take much longer. To fix, combine the "preceding" and "ancestor" steps into one "preceding" step and one "ancestor" step, and revert the predicate back to [last()]. The smaller union evades the libxml2 bug while avoiding the build time regression. Reported-by: Tom Lane <tgl@sss.pgh.pa.us> Tested-by: Tom Lane <tgl@sss.pgh.pa.us> Discussion: https://postgr.es/m/1132496.1781718007%40sss.pgh.pa.us Backpatch-through: 14 Branch ------ REL_16_STABLE Details ------- https://git.postgresql.org/pg/commitdiff/6776978ce8ff8f6d17cdafeff0451889423e2357 Modified Files -------------- doc/src/sgml/stylesheet-speedup-xhtml.xsl | 52 +++++++++++++++---------------- 1 file changed, 26 insertions(+), 26 deletions(-) ^ permalink raw reply [nested|flat] 6+ messages in thread
* pgsql: doc: Fix "Prev" link, take 2. @ 2026-06-18 14:32 Nathan Bossart <nathan@postgresql.org> 0 siblings, 0 replies; 6+ messages in thread From: Nathan Bossart @ 2026-06-18 14:32 UTC (permalink / raw) To: pgsql-committers@lists.postgresql.org doc: Fix "Prev" link, take 2. Commit 6678b58d78 fixed a wrong "Prev" link by changing the link generation code to use [position()=last()] instead of [last()] in the predicate on the union of reverse axes. Unfortunately, that caused documentation builds to take much longer. To fix, combine the "preceding" and "ancestor" steps into one "preceding" step and one "ancestor" step, and revert the predicate back to [last()]. The smaller union evades the libxml2 bug while avoiding the build time regression. Reported-by: Tom Lane <tgl@sss.pgh.pa.us> Tested-by: Tom Lane <tgl@sss.pgh.pa.us> Discussion: https://postgr.es/m/1132496.1781718007%40sss.pgh.pa.us Backpatch-through: 14 Branch ------ REL_15_STABLE Details ------- https://git.postgresql.org/pg/commitdiff/cfeb0b2b30f085fd24327a3950a8257ad8fa8c64 Modified Files -------------- doc/src/sgml/stylesheet-speedup-xhtml.xsl | 52 +++++++++++++++---------------- 1 file changed, 26 insertions(+), 26 deletions(-) ^ permalink raw reply [nested|flat] 6+ messages in thread
* pgsql: doc: Fix "Prev" link, take 2. @ 2026-06-18 14:32 Nathan Bossart <nathan@postgresql.org> 0 siblings, 0 replies; 6+ messages in thread From: Nathan Bossart @ 2026-06-18 14:32 UTC (permalink / raw) To: pgsql-committers@lists.postgresql.org doc: Fix "Prev" link, take 2. Commit 6678b58d78 fixed a wrong "Prev" link by changing the link generation code to use [position()=last()] instead of [last()] in the predicate on the union of reverse axes. Unfortunately, that caused documentation builds to take much longer. To fix, combine the "preceding" and "ancestor" steps into one "preceding" step and one "ancestor" step, and revert the predicate back to [last()]. The smaller union evades the libxml2 bug while avoiding the build time regression. Reported-by: Tom Lane <tgl@sss.pgh.pa.us> Tested-by: Tom Lane <tgl@sss.pgh.pa.us> Discussion: https://postgr.es/m/1132496.1781718007%40sss.pgh.pa.us Backpatch-through: 14 Branch ------ REL_14_STABLE Details ------- https://git.postgresql.org/pg/commitdiff/1d216f1e772369c0275b46029821de6802fe40b9 Modified Files -------------- doc/src/sgml/stylesheet-speedup-xhtml.xsl | 52 +++++++++++++++---------------- 1 file changed, 26 insertions(+), 26 deletions(-) ^ permalink raw reply [nested|flat] 6+ messages in thread
end of thread, other threads:[~2026-06-18 14:32 UTC | newest] Thread overview: 6+ messages (download: mbox mbox.gz follow: Atom feed) -- links below jump to the message on this page -- 2026-06-18 14:32 pgsql: doc: Fix "Prev" link, take 2. Nathan Bossart <nathan@postgresql.org> 2026-06-18 14:32 pgsql: doc: Fix "Prev" link, take 2. Nathan Bossart <nathan@postgresql.org> 2026-06-18 14:32 pgsql: doc: Fix "Prev" link, take 2. Nathan Bossart <nathan@postgresql.org> 2026-06-18 14:32 pgsql: doc: Fix "Prev" link, take 2. Nathan Bossart <nathan@postgresql.org> 2026-06-18 14:32 pgsql: doc: Fix "Prev" link, take 2. Nathan Bossart <nathan@postgresql.org> 2026-06-18 14:32 pgsql: doc: Fix "Prev" link, take 2. Nathan Bossart <nathan@postgresql.org>
This inbox is served by agora; see mirroring instructions for how to clone and mirror all data and code used for this inbox