Remove useless asserts in report_namespace_conflict() An assertion is used in this routine to check that a valid namespace OID is given by the caller, but it was repeated twice: once at the top of the routine and a second time multiple times in a switch/case. This commit removes the assertions within the switch/case.
Thinko in commit 765cbfdc9263. Author: Man Zeng <[email protected]> Reviewed-by: Kirill Reshke <[email protected]> Discussion: https://postgr.es/m/[email protected] Branch ------ master Details ------- https://git.postgresql.org/pg/commitdiff/2a6ce34b55e1cbb16a507c2e90c626eef71018b7 Modified Files -------------- src/backend/commands/alter.c | 6 ------ 1 file changed, 6 deletions(-)
