From: Bill Traynor Date: Fri, 19 Sep 2014 17:54:30 +0000 (-0400) Subject: Added missing NULL value to sql insert statement. X-Git-Tag: 1.31.0-rc.0~13929 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/membres/message.php?a=commitdiff_plain;h=f91ffd128a2dcbb8a1ecdc0ba885e648fd88c99a;p=lhc%2Fweb%2Fwiklou.git 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 --- 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