diff options
| author | Robert Haas | 2016-06-17 13:24:29 +0000 |
|---|---|---|
| committer | Robert Haas | 2016-06-17 13:26:17 +0000 |
| commit | 292794f82b4ebde33ec7f2a572ddd1dedba8ce37 (patch) | |
| tree | ba36ce1d6f4c2bef19e859c643156cd8902262b2 /src/test | |
| parent | 103512cee95b5bd0feb83c225eeff61c58874413 (diff) | |
Remove PID from 'parallel worker' context message.
Discussion: <bfd204ab-ab1a-792a-b345-0274a09a4b5f@2ndquadrant.com>
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/regress/expected/select_parallel.out | 4 | ||||
| -rw-r--r-- | src/test/regress/sql/select_parallel.sql | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/test/regress/expected/select_parallel.out b/src/test/regress/expected/select_parallel.out index 58ab425add8..6f1f24748b6 100644 --- a/src/test/regress/expected/select_parallel.out +++ b/src/test/regress/expected/select_parallel.out @@ -64,8 +64,8 @@ explain (costs off) (5 rows) do $$begin - -- Provoke error in worker. The original message CONTEXT contains a worker - -- PID that must be hidden in the test output. + -- Provoke error, possibly in worker. If this error happens to occur in + -- the worker, there will be a CONTEXT line which must be hidden. perform stringu1::int2 from tenk1 where unique1 = 1; exception when others then diff --git a/src/test/regress/sql/select_parallel.sql b/src/test/regress/sql/select_parallel.sql index bb02ee0019f..7b607c203ad 100644 --- a/src/test/regress/sql/select_parallel.sql +++ b/src/test/regress/sql/select_parallel.sql @@ -30,8 +30,8 @@ explain (costs off) select stringu1::int2 from tenk1 where unique1 = 1; do $$begin - -- Provoke error in worker. The original message CONTEXT contains a worker - -- PID that must be hidden in the test output. + -- Provoke error, possibly in worker. If this error happens to occur in + -- the worker, there will be a CONTEXT line which must be hidden. perform stringu1::int2 from tenk1 where unique1 = 1; exception when others then |
