Incorrect Oracle syntax in conversion script for ETS

Description

The following SQL in the 2.7->2.8 Oracle conversion script is is incorrect:

– New column for Email Template service
– SAK-18532/SAK-19522
alter table EMAIL_TEMPLATE_ITEM add column EMAILFROM varchar2(255);

It should be:

alter table EMAIL_TEMPLATE_ITEM add EMAILFROM varchar2(255);

Activity

Show:

Hudson CI Server February 23, 2011 at 9:10 PM

Integrated in sakai trunk #447 (See http://builds.sakaiproject.org:8080/job/sakai%20trunk/447/)
Fix Oracle SQL syntax

Anthony Whyte February 22, 2011 at 10:16 AM

2.8.x r88694

Seth Theriault February 21, 2011 at 12:40 PM

Syntax corrected in trunk, r88643. Decision on varchar2 v. clob still under discussion.

Seth Theriault February 17, 2011 at 7:41 AM

In a virgin auto-ddl'd 2.8 database, this column is a CLOB, therefore the new statement is:

alter table EMAIL_TEMPLATE_ITEM add EMAILFROM clob;

Seth Theriault February 14, 2011 at 12:52 PM

Linking to main 2.8 Oracle conversion ticket.

Fixed

Details

Priority

Affects versions

Fix versions

Components

Assignee

Reporter

Conversion Script Required

Yes

Environment

Oracle 9i
Created February 14, 2011 at 12:50 PM
Updated March 27, 2012 at 6:58 AM
Resolved February 22, 2011 at 10:17 AM