1 | -- $Id: st1-unload.pgsql 69111 2017-10-17 14:26:02Z vboxsync $
|
---|
2 | --- @file
|
---|
3 | -- VBox Test Manager - Self Test #1 Database Unload File.
|
---|
4 | --
|
---|
5 |
|
---|
6 | --
|
---|
7 | -- Copyright (C) 2012-2017 Oracle Corporation
|
---|
8 | --
|
---|
9 | -- This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | -- available from http://www.virtualbox.org. This file is free software;
|
---|
11 | -- you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | -- General Public License (GPL) as published by the Free Software
|
---|
13 | -- Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | -- VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | -- hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | --
|
---|
17 | -- The contents of this file may alternatively be used under the terms
|
---|
18 | -- of the Common Development and Distribution License Version 1.0
|
---|
19 | -- (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | -- VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | -- CDDL are applicable instead of those of the GPL.
|
---|
22 | --
|
---|
23 | -- You may elect to license modified versions of this file under the
|
---|
24 | -- terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | --
|
---|
26 |
|
---|
27 |
|
---|
28 |
|
---|
29 | \set ON_ERROR_STOP 1
|
---|
30 | \connect testmanager;
|
---|
31 |
|
---|
32 | BEGIN WORK;
|
---|
33 |
|
---|
34 | DELETE FROM TestBoxStatuses;
|
---|
35 | DELETE FROM SchedQueues;
|
---|
36 |
|
---|
37 | DELETE FROM SchedGroupMembers WHERE uidAuthor = 1112223331;
|
---|
38 | UPDATE TestBoxes SET idSchedGroup = 1 WHERE idSchedGroup IN ( SELECT idSchedGroup FROM SchedGroups WHERE uidAuthor = 1112223331 );
|
---|
39 | DELETE FROM SchedGroups WHERE uidAuthor = 1112223331 OR sName = 'st1-group';
|
---|
40 |
|
---|
41 | UPDATE TestSets SET idTestResult = NULL
|
---|
42 | WHERE idTestCase IN ( SELECT idTestCase FROM TestCases WHERE uidAuthor = 1112223331 );
|
---|
43 |
|
---|
44 | DELETE FROM TestResultValues
|
---|
45 | WHERE idTestResult IN ( SELECT idTestResult FROM TestResults
|
---|
46 | WHERE idTestSet IN ( SELECT idTestSet FROM TestSets
|
---|
47 | WHERE idTestCase IN ( SELECT idTestCase FROM TestCases
|
---|
48 | WHERE uidAuthor = 1112223331 ) ) );
|
---|
49 | DELETE FROM TestResultFiles
|
---|
50 | WHERE idTestResult IN ( SELECT idTestResult FROM TestResults
|
---|
51 | WHERE idTestSet IN ( SELECT idTestSet FROM TestSets
|
---|
52 | WHERE idTestCase IN ( SELECT idTestCase FROM TestCases
|
---|
53 | WHERE uidAuthor = 1112223331 ) ) );
|
---|
54 | DELETE FROM TestResultMsgs
|
---|
55 | WHERE idTestResult IN ( SELECT idTestResult FROM TestResults
|
---|
56 | WHERE idTestSet IN ( SELECT idTestSet FROM TestSets
|
---|
57 | WHERE idTestCase IN ( SELECT idTestCase FROM TestCases
|
---|
58 | WHERE uidAuthor = 1112223331 ) ) );
|
---|
59 | DELETE FROM TestResults
|
---|
60 | WHERE idTestSet IN ( SELECT idTestSet FROM TestSets
|
---|
61 | WHERE idTestCase IN ( SELECT idTestCase FROM TestCases WHERE uidAuthor = 1112223331 ) );
|
---|
62 | DELETE FROM TestSets
|
---|
63 | WHERE idTestCase IN ( SELECT idTestCase FROM TestCases WHERE uidAuthor = 1112223331 );
|
---|
64 |
|
---|
65 | DELETE FROM TestCases WHERE uidAuthor = 1112223331;
|
---|
66 | DELETE FROM TestCaseArgs WHERE uidAuthor = 1112223331;
|
---|
67 | DELETE FROM TestGroups WHERE uidAuthor = 1112223331 OR sName = 'st1-testgroup';
|
---|
68 | DELETE FROM TestGroupMembers WHERE uidAuthor = 1112223331;
|
---|
69 |
|
---|
70 | DELETE FROM BuildSources WHERE uidAuthor = 1112223331;
|
---|
71 | DELETE FROM Builds WHERE uidAuthor = 1112223331;
|
---|
72 | DELETE FROM BuildCategories WHERE sProduct = 'st1';
|
---|
73 |
|
---|
74 | DELETE FROM Users WHERE uid = 1112223331;
|
---|
75 |
|
---|
76 | COMMIT WORK;
|
---|
77 |
|
---|