VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/testmanager/selftest/st1-unload.pgsql@ 69434

Last change on this file since 69434 was 69111, checked in by vboxsync, 7 years ago

(C) year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.6 KB
Line 
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
32BEGIN WORK;
33
34DELETE FROM TestBoxStatuses;
35DELETE FROM SchedQueues;
36
37DELETE FROM SchedGroupMembers WHERE uidAuthor = 1112223331;
38UPDATE TestBoxes SET idSchedGroup = 1 WHERE idSchedGroup IN ( SELECT idSchedGroup FROM SchedGroups WHERE uidAuthor = 1112223331 );
39DELETE FROM SchedGroups WHERE uidAuthor = 1112223331 OR sName = 'st1-group';
40
41UPDATE TestSets SET idTestResult = NULL
42 WHERE idTestCase IN ( SELECT idTestCase FROM TestCases WHERE uidAuthor = 1112223331 );
43
44DELETE 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 ) ) );
49DELETE 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 ) ) );
54DELETE 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 ) ) );
59DELETE FROM TestResults
60 WHERE idTestSet IN ( SELECT idTestSet FROM TestSets
61 WHERE idTestCase IN ( SELECT idTestCase FROM TestCases WHERE uidAuthor = 1112223331 ) );
62DELETE FROM TestSets
63 WHERE idTestCase IN ( SELECT idTestCase FROM TestCases WHERE uidAuthor = 1112223331 );
64
65DELETE FROM TestCases WHERE uidAuthor = 1112223331;
66DELETE FROM TestCaseArgs WHERE uidAuthor = 1112223331;
67DELETE FROM TestGroups WHERE uidAuthor = 1112223331 OR sName = 'st1-testgroup';
68DELETE FROM TestGroupMembers WHERE uidAuthor = 1112223331;
69
70DELETE FROM BuildSources WHERE uidAuthor = 1112223331;
71DELETE FROM Builds WHERE uidAuthor = 1112223331;
72DELETE FROM BuildCategories WHERE sProduct = 'st1';
73
74DELETE FROM Users WHERE uid = 1112223331;
75
76COMMIT WORK;
77
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette