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),