]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Fix wrong assertion and poor error messages in "COPY (query) TO".
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 21 Oct 2024 19:08:22 +0000 (15:08 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 21 Oct 2024 19:08:22 +0000 (15:08 -0400)
commitc80a1e0483970f88710469c5bfe55d5e48cf3bd7
treed2985528ca7995b3177cc3ce7605a6b551ed5ff7
parentd97419b851f87c318c2e188afa9c669b5538010e
Fix wrong assertion and poor error messages in "COPY (query) TO".

If the query is rewritten into a NOTIFY command by a DO INSTEAD
rule, we'd get an assertion failure, or in non-assert builds
issue a rather confusing error message.  Improve that.

Also fix a longstanding grammar mistake in a nearby error message.

Per bug #18664 from Alexander Lakhin.  Back-patch to all supported
branches.

Tender Wang and Tom Lane

Discussion: https://postgr.es/m/18664-ffd0ebc2386598df@postgresql.org
src/backend/commands/copyto.c
src/test/regress/expected/copydml.out
src/test/regress/sql/copydml.sql