VirtualBox

Ignore:
Timestamp:
Jun 5, 2016 5:46:15 PM (9 years ago)
Author:
vboxsync
Message:

testmanager: adding sComment columns to TestCases, TestGroups and SchedGroups.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/testmanager/core/testcase.pgsql

    r61468 r61472  
    3232DROP FUNCTION IF EXISTS del_testcase(INTEGER);
    3333DROP FUNCTION IF EXISTS TestCaseLogic_delEntry(INTEGER, INTEGER);
     34DROP FUNCTION IF EXISTS TestCaseLogic_addEntry(a_uidAuthor INTEGER, a_sName TEXT, a_sDescription TEXT,
     35                                               a_fEnabled BOOL, a_cSecTimeout INTEGER,  a_sTestBoxReqExpr TEXT,
     36                                               a_sBuildReqExpr TEXT, a_sBaseCmd TEXT, a_sTestSuiteZips TEXT);
     37DROP FUNCTION IF EXISTS TestCaseLogic_editEntry(a_uidAuthor INTEGER, a_idTestCase INTEGER, a_sName TEXT, a_sDescription TEXT,
     38                                                a_fEnabled BOOL, a_cSecTimeout INTEGER,  a_sTestBoxReqExpr TEXT,
     39                                                a_sBuildReqExpr TEXT, a_sBaseCmd TEXT, a_sTestSuiteZips TEXT);
    3440
    3541---
     
    96102$$ LANGUAGE plpgsql;
    97103
     104
    98105CREATE OR REPLACE function TestCaseLogic_addEntry(a_uidAuthor INTEGER, a_sName TEXT, a_sDescription TEXT,
    99106                                                  a_fEnabled BOOL, a_cSecTimeout INTEGER,  a_sTestBoxReqExpr TEXT,
    100                                                   a_sBuildReqExpr TEXT, a_sBaseCmd TEXT, a_sTestSuiteZips TEXT)
     107                                                  a_sBuildReqExpr TEXT, a_sBaseCmd TEXT, a_sTestSuiteZips TEXT,
     108                                                  a_sComment TEXT)
    101109    RETURNS INTEGER AS $$
    102110    DECLARE
     
    106114
    107115        INSERT INTO TestCases (uidAuthor, sName, sDescription, fEnabled, cSecTimeout,
    108                                sTestBoxReqExpr, sBuildReqExpr, sBaseCmd, sTestSuiteZips)
     116                               sTestBoxReqExpr, sBuildReqExpr, sBaseCmd, sTestSuiteZips, sComment)
    109117            VALUES (a_uidAuthor, a_sName, a_sDescription, a_fEnabled, a_cSecTimeout,
    110                     a_sTestBoxReqExpr, a_sBuildReqExpr, a_sBaseCmd, a_sTestSuiteZips)
     118                    a_sTestBoxReqExpr, a_sBuildReqExpr, a_sBaseCmd, a_sTestSuiteZips, a_Comment)
    111119            RETURNING idTestcase INTO v_idTestCase;
    112120        RETURN v_idTestCase;
     
    114122$$ LANGUAGE plpgsql;
    115123
     124
    116125CREATE OR REPLACE function TestCaseLogic_editEntry(a_uidAuthor INTEGER, a_idTestCase INTEGER, a_sName TEXT, a_sDescription TEXT,
    117126                                                   a_fEnabled BOOL, a_cSecTimeout INTEGER,  a_sTestBoxReqExpr TEXT,
    118                                                    a_sBuildReqExpr TEXT, a_sBaseCmd TEXT, a_sTestSuiteZips TEXT)
     127                                                   a_sBuildReqExpr TEXT, a_sBaseCmd TEXT, a_sTestSuiteZips TEXT,
     128                                                   a_sComment TEXT)
    119129    RETURNS INTEGER AS $$
    120130    DECLARE
     
    126136        PERFORM TestCaseLogic_historizeEntry(a_idTestCase, CURRENT_TIMESTAMP);
    127137        INSERT INTO TestCases (idTestCase, uidAuthor, sName, sDescription, fEnabled, cSecTimeout,
    128                                sTestBoxReqExpr, sBuildReqExpr, sBaseCmd, sTestSuiteZips)
     138                               sTestBoxReqExpr, sBuildReqExpr, sBaseCmd, sTestSuiteZips, sComment)
    129139            VALUES (a_idTestCase, a_uidAuthor, a_sName, a_sDescription, a_fEnabled, a_cSecTimeout,
    130                     a_sTestBoxReqExpr, a_sBuildReqExpr, a_sBaseCmd, a_sTestSuiteZips)
     140                    a_sTestBoxReqExpr, a_sBuildReqExpr, a_sBaseCmd, a_sTestSuiteZips, a_sComment)
    131141            RETURNING idGenTestCase INTO v_idGenTestCase;
    132142       RETURN v_idGenTestCase;
Note: See TracChangeset for help on using the changeset viewer.

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