]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Ensure COPY TO on an RLS-enabled table copies no more than it should.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 10 Mar 2023 18:52:28 +0000 (13:52 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 10 Mar 2023 18:52:28 +0000 (13:52 -0500)
commit866fd004d9f94b87d453642c0c854d38884d3d3d
tree95d5112b24bd2bfe131d26390b8d445690243929
parentae632f7a31470ca2298bfef79a957dd19678726a
Ensure COPY TO on an RLS-enabled table copies no more than it should.

The COPY documentation is quite clear that "COPY relation TO" copies
rows from only the named table, not any inheritance children it may
have.  However, if you enabled row-level security on the table then
this stopped being true, because the code forgot to apply the ONLY
modifier in the "SELECT ... FROM relation" query that it constructs
in order to allow RLS predicates to be attached.  Fix that.

Report and patch by Antonin Houska (comment adjustments and test case
by me).  Back-patch to all supported branches.

Discussion: https://postgr.es/m/3472.1675251957@antos
src/backend/commands/copy.c
src/test/regress/expected/rowsecurity.out
src/test/regress/sql/rowsecurity.sql