diff options
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/Makefile | 5 | ||||
-rw-r--r-- | doc/src/sgml/regress.sgml | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/doc/src/sgml/Makefile b/doc/src/sgml/Makefile index b506fc66464..037c875b847 100644 --- a/doc/src/sgml/Makefile +++ b/doc/src/sgml/Makefile @@ -2,7 +2,7 @@ # # PostgreSQL documentation makefile # -# $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.75 2005/01/04 21:03:30 petere Exp $ +# $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.76 2006/04/06 18:54:36 petere Exp $ # #---------------------------------------------------------------------------- @@ -196,7 +196,8 @@ HISTORY.html: release.sgml regress_README.html: regress.sgml ( echo '<!doctype chapter PUBLIC "-//OASIS//DTD DocBook V4.2//EN" ['; \ - echo '<!entity % standalone-ignore "IGNORE"> ]>'; \ + echo '<!entity % standalone-ignore "IGNORE">'; \ + echo '<!entity % standalone-include "INCLUDE"> ]>'; \ cat $< ) >tempfile_regress_README.sgml $(JADE.text) -V nochunks tempfile_regress_README.sgml >$@ rm tempfile_regress_README.sgml diff --git a/doc/src/sgml/regress.sgml b/doc/src/sgml/regress.sgml index 11f9468860f..0b5ddf4ac44 100644 --- a/doc/src/sgml/regress.sgml +++ b/doc/src/sgml/regress.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/regress.sgml,v 1.50 2006/01/22 05:20:32 neilc Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/regress.sgml,v 1.51 2006/04/06 18:54:36 petere Exp $ --> <chapter id="regress"> <title id="regress-title">Regression Tests</title> @@ -313,7 +313,9 @@ exclusion of those that don't. If the <literal>errors</literal> test results in a server crash at the <literal>select infinite_recurse()</> command, it means that the platform's limit on process stack size is smaller than the - <xref linkend="guc-max-stack-depth"> parameter indicates. This + <![%standalone-ignore;[<xref linkend="guc-max-stack-depth">]]> + <![%standalone-include;[<literal>max_stack_depth</literal>]]> + parameter indicates. This can be fixed by running the postmaster under a higher stack size limit (4MB is recommended with the default value of <varname>max_stack_depth</>). If you are unable to do that, an |