1
0
Fork 0

Do NOT escape database names.

This commit is contained in:
Amjith Ramanujam 2017-10-11 12:56:46 -07:00
parent 7c720a0765
commit 614a42f03f
2 changed files with 4 additions and 1 deletions

View File

@ -6,6 +6,10 @@ Internal changes:
* Use temporary dir as config location in tests
* Fix errors in the ``tee`` test (#795 and #797). (Thanks: `Irina Truong`_)
Bug Fixes:
----------
* Do NOT quote the database names in the completion menu (Thanks: `Amjith Ramanujam`_)
1.8.1
=====

View File

@ -138,7 +138,6 @@ class PGCompleter(Completer):
return [self.escape_name(name) for name in names]
def extend_database_names(self, databases):
databases = self.escaped_names(databases)
self.databases.extend(databases)
def extend_keywords(self, additional_keywords):