Consistently use "superuser" instead of "super user"
[pgsql.git] / src / test / regress / expected / infinite_recurse_1.out
blobb2c99a0d0d41f511aad229310fdc94b1c3def47a
1 -- Check that stack depth detection mechanism works and
2 -- max_stack_depth is not set too high.
3 create function infinite_recurse() returns int as
4 'select infinite_recurse()' language sql;
5 -- Unfortunately, up till mid 2020 the Linux kernel had a bug in PPC64
6 -- signal handling that would cause this test to crash if it happened
7 -- to receive an sinval catchup interrupt while the stack is deep:
8 -- https://bugzilla.kernel.org/show_bug.cgi?id=205183
9 -- It is likely to be many years before that bug disappears from all
10 -- production kernels, so disable this test on such platforms.
11 -- (We still create the function, so as not to have a cross-platform
12 -- difference in the end state of the regression database.)
13 SELECT version() ~ 'powerpc64[^,]*-linux-gnu'
14        AS skip_test \gset
15 \if :skip_test
16 \quit