]> granicus.if.org Git - postgresql/commit
Handle append_rel_list in expand_security_qual
authorStephen Frost <sfrost@snowman.net>
Fri, 9 Oct 2015 14:49:10 +0000 (10:49 -0400)
committerStephen Frost <sfrost@snowman.net>
Fri, 9 Oct 2015 14:49:10 +0000 (10:49 -0400)
commita26609e470601421b44424d6cc2683c4acabd086
treebb2d8e6486b35a77c29568eef06a3de0a07ba14c
parente50431aa22e3b894ac107affd358052c20a899f7
Handle append_rel_list in expand_security_qual

During expand_security_quals, we take the security barrier quals on an
RTE and create a subquery which evaluates the quals.  During this, we
have to replace any variables in the outer query which refer to the
original RTE with references to the columns from the subquery.

We need to also perform that replacement for any Vars in the
append_rel_list.

Only backpatching to 9.5 as we only go through this process in 9.4 for
auto-updatable security barrier views, which UNION ALL queries aren't.

Discovered by Haribabu Kommi

Patch by Dean Rasheed
src/backend/optimizer/prep/prepsecurity.c
src/test/regress/expected/rowsecurity.out
src/test/regress/sql/rowsecurity.sql