You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-dev@db.apache.org by "Kim Haase (JIRA)" <ji...@apache.org> on 2014/01/23 22:55:37 UTC

[jira] [Updated] (DERBY-6458) The Reference Manual should state that the year, month, and day components of a timestamp must be positive integers.

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

Kim Haase updated DERBY-6458:
-----------------------------

    Attachment: rrefsqlj27620.html
                DERBY-6458.diff

Attaching DERBY-6458.diff and rrefsqlj27620.html, adding a clarifying sentence to 

M       src/ref/rrefsqlj27620.dita

I hope this is sufficent.

> The Reference Manual should state that the year, month, and day components of a timestamp must be positive integers.
> --------------------------------------------------------------------------------------------------------------------
>
>                 Key: DERBY-6458
>                 URL: https://issues.apache.org/jira/browse/DERBY-6458
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>    Affects Versions: 10.11.0.0
>            Reporter: Rick Hillegas
>            Assignee: Kim Haase
>         Attachments: DERBY-6458.diff, rrefsqlj27620.html
>
>
> There is no year 0, month 0, or day 0 in the notation scheme used by Derby timestamps. We should state this in the Reference Guide section titled "TIMESTAMP data type". The following script shows this:
> {noformat}
> connect 'jdbc:derby:memory:db;create=true';
> create table t( a timestamp );
> -- fails because year, month, and day must be positive integers
> insert into t values ( '0000-00-00 00:00:00' );
> insert into t values ( '0001-00-00 00:00:00' );
> insert into t values ( '0001-01-00 00:00:00' );
> -- succeeds
> insert into t values ( '0001-01-01 00:00:00' );
> select * from t;
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)