Malformed user access sql for postgres guest agent

The postgresql guest agent creates a malformed sql statement
when attempting to retrieve or modify the list of users with
access to the DB.

Change-Id: I87d3a71b4b567707561dd8110b3f80f8095f95bb
Fixes-bug: 1543816
This commit is contained in:
Alex Tomic 2015-10-02 16:50:15 -04:00
parent e8261c5f96
commit 61d06b510a

View File

@ -212,7 +212,7 @@ class UserQuery(object):
def update_name(cls, old, new):
"""Query to update the name of a user."""
return "ALTER USER \"{old}\" RENAME TO '{new}'".format(
return "ALTER USER \"{old}\" RENAME TO \"{new}\"".format(
old=old,
new=new,
)
@ -231,7 +231,7 @@ class AccessQuery(object):
"""Query to list grants for a user."""
return (
"SELECT datname "
"SELECT datname, pg_encoding_to_char(encoding), datcollate "
"FROM pg_database "
"WHERE datistemplate = false "
"AND 'user {user}=CTc' = ANY (datacl)".format(user=user)