Removes unnecessary comments

pull/7240/head
gindibay 2023-11-16 10:19:00 +03:00
parent da72cd3cf1
commit 58bb165145
1 changed files with 0 additions and 14 deletions

View File

@ -466,20 +466,6 @@ GetDependencyCreateDDLCommands(const ObjectAddress *dependency)
databaseDDLCommands = list_concat(databaseDDLCommands, ownerDDLCommands); databaseDDLCommands = list_concat(databaseDDLCommands, ownerDDLCommands);
} }
/*TODO: To reviewer: Having a code block for dependency makes sense */
/* However dependency tree is based on pg metadata; which does not reflect */
/* actual database dependencies. I added this block just to point out the issue.
*/
/*
* if(EnableCreateDatabasePropagation){
* List *dbGrants = GrantOnDatabaseDDLCommands(dependency->objectId);
* databaseDDLCommands = list_concat(databaseDDLCommands, dbGrants);
*
* }
*/
return databaseDDLCommands; return databaseDDLCommands;
} }