integrate patch for Issue 33

This commit is contained in:
jan.dittberner 2008-09-16 18:22:18 +00:00
parent a0ac2a438f
commit d6d4b511a4

View File

@ -26,7 +26,7 @@ class RawAlterTableVisitor(object):
def start_alter_table(self,param):
table = self._to_table(param)
table_name = self._to_table_name(table)
self.append("\nALTER TABLE %s "%table_name)
self.append('\nALTER TABLE "%s" ' % table_name)
return table
def _pk_constraint(self,table,column,status):