From 1036bdca4b785b1225da98629eca9c471a79f928 Mon Sep 17 00:00:00 2001 From: Karl Chen Date: Fri, 17 Oct 2003 09:05:31 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=2497 --- checkin_notes | 4 +++- py/Boinc/database.py | 1 + py/Boinc/db_base.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/checkin_notes b/checkin_notes index 4c36e697f7..5594cfd4c3 100755 --- a/checkin_notes +++ b/checkin_notes @@ -6869,4 +6869,6 @@ Karl 2003-10-16 py/Boinc/ db_base.py (new) database.py - + setup_project.py + test/ + testbase.py diff --git a/py/Boinc/database.py b/py/Boinc/database.py index d060d5a58f..3c8a609518 100644 --- a/py/Boinc/database.py +++ b/py/Boinc/database.py @@ -201,6 +201,7 @@ class Result(DatabaseObject): 'outcome', 'client_state', 'hostid', + 'userid', 'report_deadline', 'sent_time', 'received_time', diff --git a/py/Boinc/db_base.py b/py/Boinc/db_base.py index 2515b2c7ae..51e07faea1 100644 --- a/py/Boinc/db_base.py +++ b/py/Boinc/db_base.py @@ -510,7 +510,7 @@ def init_table_classes(database_classes_, more_id_lookups = {}): def check_database_consistency(): '''Raises DatabaseInconsistency on error. - Loads the entire database into memory so will take a while. + Iterates through the entire database so will take a while. ''' for table in database_tables: print '\rChecking %s: [counting]' %(table.table),