Merge pull request #143 from michele-comitini/table_name_quoting_bug

fix for postgresql when using an alias.
This commit is contained in:
mdipierro
2013-07-19 10:13:33 -07:00
+2
View File
@@ -2570,6 +2570,8 @@ class PostgreSQLAdapter(BaseAdapter):
}
QUOTE_TEMPLATE = '%s'
def varquote(self,name):
return varquote_aux(name,'"%s"')