summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/db/backends/postgresql/client.py8
-rw-r--r--tests/dbshell/test_postgresql.py2
2 files changed, 7 insertions, 3 deletions
diff --git a/django/db/backends/postgresql/client.py b/django/db/backends/postgresql/client.py
index 2339880967..873af8cc14 100644
--- a/django/db/backends/postgresql/client.py
+++ b/django/db/backends/postgresql/client.py
@@ -13,7 +13,7 @@ class DatabaseClient(BaseDatabaseClient):
host = settings_dict.get('HOST')
port = settings_dict.get('PORT')
- dbname = settings_dict.get('NAME') or 'postgres'
+ dbname = settings_dict.get('NAME')
user = settings_dict.get('USER')
passwd = settings_dict.get('PASSWORD')
service = options.get('service')
@@ -22,13 +22,17 @@ class DatabaseClient(BaseDatabaseClient):
sslcert = options.get('sslcert')
sslkey = options.get('sslkey')
+ if not dbname and not service:
+ # Connect to the default 'postgres' db.
+ dbname = 'postgres'
if user:
args += ['-U', user]
if host:
args += ['-h', host]
if port:
args += ['-p', str(port)]
- args += [dbname]
+ if dbname:
+ args += [dbname]
args.extend(parameters)
env = {}
diff --git a/tests/dbshell/test_postgresql.py b/tests/dbshell/test_postgresql.py
index e9eb131db7..3345035a24 100644
--- a/tests/dbshell/test_postgresql.py
+++ b/tests/dbshell/test_postgresql.py
@@ -70,7 +70,7 @@ class PostgreSqlDbshellCommandTestCase(SimpleTestCase):
def test_service(self):
self.assertEqual(
self.settings_to_cmd_args_env({'OPTIONS': {'service': 'django_test'}}),
- (['psql', 'postgres'], {'PGSERVICE': 'django_test'}),
+ (['psql'], {'PGSERVICE': 'django_test'}),
)
def test_column(self):