Merge pull request #8687 from andyque/fixJenkinSqlTableName

fix jenkins sql table name
This commit is contained in:
minggo 2014-10-14 20:09:30 +08:00
commit 19d408748c
1 changed files with 17 additions and 17 deletions

View File

@ -77,7 +77,7 @@ def close_db(db):
def save_build_stats(db, pr, filename, size):
cursor = db.cursor()
sql = "INSERT INTO %s (number, size, createdTime) VALUES(%d, %d, now())" % (filename, pr, size)
sql = "INSERT INTO \"%s\" (number, size, createdTime) VALUES(%d, %d, now())" % (filename, pr, size)
print sql
cursor.execute(sql)
db.commit()