mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add quotes around postgresql database name
This commit is contained in:
parent
bff581be4c
commit
18b6091da1
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ def db_create(cursor, db, owner, template, encoding):
|
|||
template = " TEMPLATE \"%s\"" % template
|
||||
if encoding:
|
||||
encoding = " ENCODING '%s'" % encoding
|
||||
query = "CREATE DATABASE %s%s%s%s" % (db, owner, template, encoding)
|
||||
query = "CREATE DATABASE \"%s\"%s%s%s" % (db, owner, template, encoding)
|
||||
cursor.execute(query)
|
||||
return True
|
||||
elif owner and not db_owned_by(cursor, db, owner):
|
||||
|
|
Loading…
Reference in a new issue