From f91ffd128a2dcbb8a1ecdc0ba885e648fd88c99a Mon Sep 17 00:00:00 2001 From: Bill Traynor Date: Fri, 19 Sep 2014 13:54:30 -0400 Subject: [PATCH] Added missing NULL value to sql insert statement. In tables.sql the page table is defined with 14 columns. Following this, the dummy table insert statement included 13 values causing failure of the installation process. This change adds the required 14th value. Bug: 71022 Change-Id: I8f8ee95fb4c0147ac09232ef253ecf7784b7fb52 Signed-off-by: Bill Traynor --- maintenance/oracle/tables.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/oracle/tables.sql b/maintenance/oracle/tables.sql index 1e0fa40ab2..36be16e4fd 100644 --- a/maintenance/oracle/tables.sql +++ b/maintenance/oracle/tables.sql @@ -88,7 +88,7 @@ CREATE INDEX &mw_prefix.page_i03 ON &mw_prefix.page (page_is_redirect, page_name -- Create a dummy page to satisfy fk contraints especially with revisions INSERT INTO &mw_prefix.page - VALUES (0, 0, ' ', NULL, 0, 0, 0, 0, current_timestamp, NULL, 0, 0, NULL); + VALUES (0, 0, ' ', NULL, 0, 0, 0, 0, current_timestamp, NULL, 0, 0, NULL, NULL); /*$mw$*/ CREATE TRIGGER &mw_prefix.page_set_random BEFORE INSERT ON &mw_prefix.page -- 2.20.1