Skip to content

Commit

Permalink
Merge pull request #1349 from imincik/db_manager_quoteid
Browse files Browse the repository at this point in the history
db manager: fixed quoting of table name when schema is empty string
  • Loading branch information
jef-n committed May 17, 2014
2 parents bcfe0a8 + 90e4a5f commit 0f3158a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/db_manager/db_plugins/connector.py
Expand Up @@ -183,7 +183,7 @@ def quoteId(self, identifier):
if hasattr(identifier, '__iter__'):
ids = list()
for i in identifier:
if i == None:
if i == None or i == "":
continue
ids.append( self.quoteId(i) )
return u'.'.join( ids )
Expand Down

0 comments on commit 0f3158a

Please sign in to comment.