You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ode.apache.org by "Matthieu Riou (JIRA)" <ji...@apache.org> on 2008/06/27 16:26:46 UTC

[jira] Resolved: (ODE-318) Add missed space in SQL DDL in org.apache.ode.embed.ServerResources#SCHEDULER_DDL

     [ https://issues.apache.org/jira/browse/ODE-318?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matthieu Riou resolved ODE-318.
-------------------------------

       Resolution: Fixed
    Fix Version/s: 1.3
         Assignee: Matthieu Riou

I've corrected it in my local repo. Won't propagate on the main before some time as I have a coupld of other things to commit first but it should be there soon.

> Add missed space in SQL DDL in org.apache.ode.embed.ServerResources#SCHEDULER_DDL
> ---------------------------------------------------------------------------------
>
>                 Key: ODE-318
>                 URL: https://issues.apache.org/jira/browse/ODE-318
>             Project: ODE
>          Issue Type: Bug
>    Affects Versions: 1.1.1
>         Environment: Windows XP SP2
> ServiceMix 3.2.1
> Java 1.5
> MySQL 5
>            Reporter: Oleg Atamanenko
>            Assignee: Matthieu Riou
>             Fix For: 1.3
>
>   Original Estimate: 0.5h
>  Remaining Estimate: 0.5h
>
> Missed space in LONGVARBINARY (should be LONG VARBINARY)
> private static final String SCHEDULER_DDL =
>             "CREATE TABLE ODE_JOB (" +
>                     "  jobid CHAR(64) DEFAULT '' NOT NULL," +
>                     "  ts BIGINT DEFAULT 0 NOT NULL ," +
>                     "  nodeid char(64)  NULL," +
>                     "  scheduled int DEFAULT 0 NOT NULL," +
>                     "  transacted int DEFAULT 0 NOT NULL," +
>                     "  details LONG VARBINARY NULL," +
>                     "  PRIMARY KEY(jobid));" +
>                     "CREATE INDEX IDX_ODE_JOB_TS ON ODE_JOB (ts);" +
>                     "CREATE INDEX IDX_ODE_JOB_NODEID ON ODE_JOB (nodeid);";

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.