aboutsummaryrefslogtreecommitdiffstats
path: root/sql/mysql/patch-testrun.sql
diff options
context:
space:
mode:
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>2024-12-13 14:54:36 +0000
committerGerrit Code Review <gerrit@wikimedia.org>2024-12-13 14:54:36 +0000
commit2d8285583f1866a0b00ec4df8365fb5fc63e0072 (patch)
tree6375b9e4e1001936f3259f7f4674bfbad369b080 /sql/mysql/patch-testrun.sql
parenta42ef21f4f2fed3f76214568c4c9b91bd45435e6 (diff)
parent251f4395865f8a33bcf32c6faa11748a14753492 (diff)
downloadmediawikicore-2d8285583f1866a0b00ec4df8365fb5fc63e0072.tar.gz
mediawikicore-2d8285583f1866a0b00ec4df8365fb5fc63e0072.zip
Merge "Move SQL schema and schema changes to new sql/ top-level directory"
Diffstat (limited to 'sql/mysql/patch-testrun.sql')
-rw-r--r--sql/mysql/patch-testrun.sql33
1 files changed, 33 insertions, 0 deletions
diff --git a/sql/mysql/patch-testrun.sql b/sql/mysql/patch-testrun.sql
new file mode 100644
index 000000000000..a2bb05ae5db8
--- /dev/null
+++ b/sql/mysql/patch-testrun.sql
@@ -0,0 +1,33 @@
+--
+-- Optional tables for parserTests recording mode
+-- With --record option, success data will be saved to these tables,
+-- and comparisons of what's changed from the previous run will be
+-- displayed at the end of each run.
+--
+
+drop table if exists /*$wgDBprefix*/testitem;
+drop table if exists /*$wgDBprefix*/testrun;
+
+create table /*$wgDBprefix*/testrun (
+ tr_id int not null auto_increment,
+
+ tr_date char(14) binary,
+ tr_mw_version blob,
+ tr_php_version blob,
+ tr_db_version blob,
+ tr_uname blob,
+
+ primary key (tr_id)
+) engine=InnoDB;
+
+create table /*$wgDBprefix*/testitem (
+ ti_run int not null,
+ ti_name varchar(255),
+ ti_success bool,
+
+ unique key (ti_run, ti_name),
+ key (ti_run, ti_success),
+
+ foreign key (ti_run) references /*$wgDBprefix*/testrun(tr_id)
+ on delete cascade
+) engine=InnoDB;