]> xenbits.xensource.com Git - people/aperard/osstest.git/commitdiff
step logfiles: Provide new column
authorIan Jackson <ian.jackson@eu.citrix.com>
Thu, 29 Jun 2017 11:43:00 +0000 (12:43 +0100)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Fri, 30 Jun 2017 16:17:46 +0000 (17:17 +0100)
We will write things into it, and use it, soon.

This is the start of a "Populate-then-rely" schema change, as
described in schema/README.updates.  Specifically, the steps:
1. Commit: new schema update `add', status Preparatory
2. Commit: new schema update `constraint', status Unfinished

Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
schema/steps-logfile-add.sql [new file with mode: 0644]
schema/steps-logfile-constraint.sql [new file with mode: 0644]

diff --git a/schema/steps-logfile-add.sql b/schema/steps-logfile-add.sql
new file mode 100644 (file)
index 0000000..5e37b10
--- /dev/null
@@ -0,0 +1,8 @@
+-- ##OSSTEST## 003 Preparatory
+--
+-- Previously, the logfile name was inferred from "stepno" and
+-- "testid".  We want to be able to set it explicitly for substeps.
+--
+-- This change is compatible with old code.
+
+ALTER TABLE steps ADD COLUMN logfile TEXT;
diff --git a/schema/steps-logfile-constraint.sql b/schema/steps-logfile-constraint.sql
new file mode 100644 (file)
index 0000000..ea4515d
--- /dev/null
@@ -0,0 +1,10 @@
+-- ##OSSTEST## 004 Unfinished
+--
+-- Previously, the logfile name was inferred from "stepno" and
+-- "testid".  Newer code will need it to be set explicitly.
+
+UPDATE steps
+   SET logfile = stepno || '.' || step || '.log'
+ WHERE logfile IS NULL;
+
+ALTER TABLE steps ALTER COLUMN logfile SET NOT NULL;