diff options
Diffstat (limited to 'python')
-rw-r--r-- | python/londiste/handlers/dispatch.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/londiste/handlers/dispatch.py b/python/londiste/handlers/dispatch.py index f3965303..e84b089a 100644 --- a/python/londiste/handlers/dispatch.py +++ b/python/londiste/handlers/dispatch.py @@ -289,10 +289,10 @@ class BaseBulkTempLoader(BaseBulkCollectingLoader): # temp table name if USE_REAL_TABLE: self.temp = self.table + "_loadertmpx" - self.qtemp = quote_ident(self.temp) + self.qtemp = quote_fqident(self.temp) else: self.temp = self.table.replace('.', '_') + "_loadertmp" - self.qtemp = quote_fqident(self.temp) + self.qtemp = quote_ident(self.temp) # quoted table name self.qtable = quote_fqident(self.table) # all fields |