Changeset 86990 in vbox
- Timestamp:
- Nov 26, 2020 2:32:06 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/db/partial-db-dump.py
r86989 r86990 101 101 'TestBoxesInSchedGroups', # ? 102 102 'SchedQueues', 103 'VcsRevisions', # ?104 103 'TestResultStrTab', # 36K rows, never mind complicated then. 105 104 ]; … … 119 118 'TestBoxStrTab', 120 119 'SystemLog', 120 'VcsRevisions', 121 121 ]; 122 122 … … 208 208 , ( idFirstTestSet, idLastTestSet, idLastTestResult, tsEffective,)); 209 209 210 # Tables which goes exclusively by tsCreated .211 for sTable in [ 'SystemLog', ]:210 # Tables which goes exclusively by tsCreated using tsEffectiveSafe. 211 for sTable in [ 'SystemLog', 'VcsRevisions' ]: 212 212 self._doCopyTo(sTable, oZipFile, oDb, 213 213 'COPY (SELECT * FROM ' + sTable + ' WHERE tsCreated >= %s) TO STDOUT WITH (FORMAT TEXT)', 214 (tsEffective ,));214 (tsEffectiveSafe,)); 215 215 216 216 # The builds table.
Note:
See TracChangeset
for help on using the changeset viewer.