Skip to content

Commit 0f3158a

Browse files
committedMay 17, 2014
Merge pull request #1349 from imincik/db_manager_quoteid
db manager: fixed quoting of table name when schema is empty string
2 parents bcfe0a8 + 90e4a5f commit 0f3158a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/db_manager/db_plugins/connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def quoteId(self, identifier):
183183
if hasattr(identifier, '__iter__'):
184184
ids = list()
185185
for i in identifier:
186-
if i == None:
186+
if i == None or i == "":
187187
continue
188188
ids.append( self.quoteId(i) )
189189
return u'.'.join( ids )

0 commit comments

Comments
 (0)
Please sign in to comment.