Re: Skip ExecCheckRTPerms in CTAS with no data
Michael Paquier <michael@paquier.xyz>
From: Michael Paquier <michael@paquier.xyz>
To: Bharath Rupireddy <bharath.rupireddyforpostgres@gmail.com>
Cc: Anastasia Lubennikova <a.lubennikova@postgrespro.ru>, Tom Lane <tgl@sss.pgh.pa.us>, PostgreSQL-development <pgsql-hackers@postgresql.org>
Date: 2020-11-12T09:06:07Z
Lists: pgsql-hackers
On Wed, Nov 11, 2020 at 07:31:49PM +0530, Bharath Rupireddy wrote: > Yes we do not have anything related to permissions mentioned in the > documentation. So, I'm not adding it now. It would be good to clarify that in the docs while we are on it. > Apart from the above, I also noticed that we unnecessarily allocate > bulk insert state(16MB memory) in case of WITH NO DATA, just to free > it in intorel_shutdown() without actually using it. So, in the v2 > patch I have made changes to not allocate bulk insert state. > > Attaching v2 patch. Consider it for further review. +EXPLAIN (ANALYZE, COSTS OFF, SUMMARY OFF, TIMING OFF) + CREATE TABLE selinto_schema.tmp0 (a) AS + SELECT oid FROM pg_class WHERE relname like '%c%' WITH NO DATA; -- OK I don't think this is sufficient. Could you add more test cases here? I can think of, coming down actually to the callers of CreateIntoRelDestReceiver: - A plain CTAS WITH NO DATA, that should pass, - CTAS EXECUTE WITH NO DATA, that should pass. - CTAS EXECUTE WITH DATA, that should not pass. - EXPLAIN CTAS WITH DATA, that should not pass. -- Michael
Commits
-
Remove INSERT privilege check at table creation of CTAS and matview
- 878f3a19c6c8 14.0 landed
-
Relax INSERT privilege requirement for CTAS and matviews WITH NO DATA
- 846005e4f382 14.0 landed