Revise DROP USER/ROLE commands with more specific version numbers to constrain IF EXISTS usage.

This commit is contained in:
MattMontgomeryKochava 2022-02-14 14:10:15 -06:00
commit a268f5d28a
3 changed files with 3 additions and 3 deletions

View file

@ -741,7 +741,7 @@ class Role():
if check_mode and self.exists:
return True
self.cursor.execute('DROP ROLE /*!50700 IF EXISTS */ /*M!100100 IF EXISTS */ %s', (self.name,))
self.cursor.execute('/*M!100005 DROP ROLE */ /*M!100103 IF EXISTS */ /*M!100005 %s */', (self.name,))
return True
def update_members(self, users, check_mode=False, append_members=False,