-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge 60429-60754 from panoramaweb18.2
SVN r60756 |2018-10-22 01:02:02 +0000
- Loading branch information
1 parent
46b69f4
commit 63d71ac
Showing
30 changed files
with
2,096 additions
and
1,206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
testresults/resources/schemas/dbscripts/postgresql/testresults-13.34-13.35.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
ALTER TABLE testresults.testleaks RENAME TO memoryleaks; | ||
ALTER TABLE testresults.memoryleaks ADD COLUMN type VARCHAR(200); | ||
|
||
CREATE TABLE testresults.handleleaks ( | ||
id serial, | ||
testrunid INTEGER NOT NULL, | ||
testName VARCHAR(200) NOT NULL, | ||
handles double precision DEFAULT 0.0, | ||
type VARCHAR(200), | ||
|
||
|
||
CONSTRAINT PK_memoryleaks PRIMARY KEY (id), | ||
CONSTRAINT FK_memoryleaks_testruns FOREIGN KEY (testrunid) REFERENCES testresults.testruns(id) | ||
); | ||
|
||
ALTER TABLE testresults.testpasses ADD COLUMN userandgdihandles INTEGER, | ||
ADD COLUMN committedmemory INTEGER, | ||
ADD COLUMN handles INTEGER; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.