Changeset 61180 in vbox for trunk/src/VBox/ValidationKit/testmanager
- Timestamp:
- May 24, 2016 11:59:25 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/db/TestManagerDatabaseComments.pgsql
r52776 r61180 156 156 COMMENT ON COLUMN BuildSources.iLastRevision IS 157 157 'The last subversion tree revision to match, no upper limit if NULL.'; 158 159 160 COMMENT ON COLUMN BuildSources.cSecMaxAge IS 161 'The maximum age of the builds in seconds, unlimited if NULL.'; 158 162 159 163 … … 627 631 628 632 633 COMMENT ON COLUMN TestBoxes.sCpuName IS 634 'The CPU name if available.'; 635 636 637 COMMENT ON COLUMN TestBoxes.lCpuRevision IS 638 'Number identifying the CPU family/model/stepping/whatever. 639 For x86 and AMD64 type CPUs, this will on the following format: 640 (EffFamily << 24) | (EffModel << 8) | Stepping.'; 641 642 629 643 COMMENT ON COLUMN TestBoxes.cCpus IS 630 644 'Number of CPUs, CPU cores and CPU threads.'; … … 653 667 COMMENT ON COLUMN TestBoxes.cMbScratch IS 654 668 'The amount of scratch space in megabytes (rounded down to nearest 64 MB).'; 669 670 671 COMMENT ON COLUMN TestBoxes.sReport IS 672 'Free form hardware and software report field.'; 655 673 656 674 … … 864 882 865 883 884 COMMENT ON COLUMN BuildCategories.sRepository IS 885 'The version control repository name.'; 886 887 866 888 COMMENT ON COLUMN BuildCategories.sBranch IS 867 'The branch name .';889 'The branch name (in the version control system).'; 868 890 869 891 … … 948 970 COMMENT ON COLUMN Builds.fBinariesDeleted IS 949 971 'Set when the binaries gets deleted by the build quota script.'; 972 973 974 COMMENT ON TABLE VcsRevisions IS 975 'This table is for translating build revisions into commit details. 976 977 For graphs and test results, it would be useful to translate revisions into 978 dates and maybe provide commit message and the committer. 979 980 Data is entered exclusively thru one or more batch jobs, so no internal 981 authorship needed. Also, since we''re mirroring data from external sources 982 here, the batch job is allowed to update/replace existing records. 983 984 @todo We we could collect more info from the version control systems, if we 985 believe it''s useful and can be presented in a reasonable manner. 986 Getting a list of affected files would be simple (requires 987 a separate table with a M:1 relationship to this table), or try 988 associate a commit to a branch.'; 989 990 991 COMMENT ON COLUMN VcsRevisions.sRepository IS 992 'The version control tree name.'; 993 994 995 COMMENT ON COLUMN VcsRevisions.iRevision IS 996 'The version control tree revision number.'; 997 998 999 COMMENT ON COLUMN VcsRevisions.tsCreated IS 1000 'When the revision was created (committed).'; 1001 1002 1003 COMMENT ON COLUMN VcsRevisions.sAuthor IS 1004 'The name of the committer. 1005 @note Not to be confused with uidAuthor and test manager users.'; 1006 1007 1008 COMMENT ON COLUMN VcsRevisions.sMessage IS 1009 'The commit message.'; 950 1010 951 1011 … … 1142 1202 1143 1203 1204 COMMENT ON INDEX TestSetsDoneCreatedBuildCatIdx IS 1205 'The TestSetsDoneCreatedBuildCatIdx is for testbox results, graph options and such.'; 1206 1207 1208 COMMENT ON INDEX TestSetsGraphBoxIdx IS 1209 'For graphs.'; 1210 1211 1144 1212 COMMENT ON TYPE TestBoxState_T IS 1145 1213 'TestBox state.
Note:
See TracChangeset
for help on using the changeset viewer.