working on #392 to fix --os-cmd and --os-shell output parsing

This commit is contained in:
Bernardo Damele
2013-02-14 11:31:20 +00:00
parent cb6d549e57
commit 2267dd8f47
2 changed files with 4 additions and 4 deletions

View File

@@ -119,7 +119,7 @@ class Miscellaneous:
def createSupportTbl(self, tblName, tblField, tblType):
inject.goStacked("DROP TABLE %s" % tblName, silent=True)
inject.goStacked("CREATE TABLE %s(%s %s)" % (tblName, tblField, tblType))
inject.goStacked("CREATE TABLE %s(id INT PRIMARY KEY IDENTITY, %s %s)" % (tblName, tblField, tblType))
def cleanup(self, onlyFileTbl=False, udfDict=None, web=False):
"""