diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2019-05-09 09:14:37 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2019-05-09 09:16:59 +0200 |
commit | 02daece4ab4cd85b80d04469056e5b631918c9d6 (patch) | |
tree | 6ff23ca4d18e4dbfd16e1e3efacdcb2e435fd6ee /doc/src | |
parent | 2d7d946cd323ce1c1d3f3ef0e5f2f41591afc1b9 (diff) | |
download | postgresql-02daece4ab4cd85b80d04469056e5b631918c9d6.tar.gz postgresql-02daece4ab4cd85b80d04469056e5b631918c9d6.zip |
Fix grammar in error message
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/plpgsql.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/plpgsql.sgml b/doc/src/sgml/plpgsql.sgml index 50f1884afec..ef1556be8fe 100644 --- a/doc/src/sgml/plpgsql.sgml +++ b/doc/src/sgml/plpgsql.sgml @@ -5165,10 +5165,10 @@ END; $$; SELECT foo(); -WARNING: number of source and target fields in assignment do not match +WARNING: number of source and target fields in assignment does not match DETAIL: strict_multi_assignment check of extra_warnings is active. HINT: Make sure the query returns the exact list of columns. -WARNING: number of source and target fields in assignment do not match +WARNING: number of source and target fields in assignment does not match DETAIL: strict_multi_assignment check of extra_warnings is active. HINT: Make sure the query returns the exact list of columns. |