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 de...@db.apache.org on 2004/09/28 21:17:32 UTC

[jira] Created: (DERBY-9) Documentation Bug

Message:

  A new issue has been created in JIRA.

---------------------------------------------------------------------
View the issue:
  http://issues.apache.org/jira/browse/DERBY-9

Here is an overview of the issue:
---------------------------------------------------------------------
        Key: DERBY-9
    Summary: Documentation Bug
       Type: Bug

     Status: Unassigned
   Priority: Minor

    Project: Derby
 Components: 
             Documentation
   Versions:
             10.0.2.0

   Assignee: 
   Reporter: Ali Demir

    Created: Tue, 28 Sep 2004 12:16 PM
    Updated: Tue, 28 Sep 2004 12:16 PM
Environment: Windows 2K

Description:
reference.pdf: page 178

Tests whether the first operand is between the second and third operands. The second operand must be less than the third operand. Applicable only to types to which <= and >= can be applied. WHERE booking_date BETWEEN DATE'1998-02-26' AND DATE'1998-03-01'

Syntax does not work. DATE'1998-02-26' i think is wrong.

WHERE booking_date BETWEEN '1998-02-26' AND '1998-03-01'

seems to work.




---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Updated: (DERBY-9) Documentation Bug

Posted by "Jean T. Anderson (JIRA)" <de...@db.apache.org>.
     [ http://issues.apache.org/jira/browse/DERBY-9?page=all ]

Jean T. Anderson updated DERBY-9:
---------------------------------

    Fix Version: 10.0.2.1
        Version: 10.0.2.0
                     (was: 10.0.2.1)

ok, really set fix version and corrected affects version.

> Documentation Bug
> -----------------
>
>          Key: DERBY-9
>          URL: http://issues.apache.org/jira/browse/DERBY-9
>      Project: Derby
>         Type: Bug
>   Components: Documentation
>     Versions: 10.0.2.0
>  Environment: Windows 2K
>     Reporter: Ali Demir
>     Assignee: Jean T. Anderson
>     Priority: Minor
>      Fix For: 10.0.2.1

>
> reference.pdf: page 178
> Tests whether the first operand is between the second and third operands. The second operand must be less than the third operand. Applicable only to types to which <= and >= can be applied. WHERE booking_date BETWEEN DATE'1998-02-26' AND DATE'1998-03-01'
> Syntax does not work. DATE'1998-02-26' i think is wrong.
> WHERE booking_date BETWEEN '1998-02-26' AND '1998-03-01'
> seems to work.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Updated: (DERBY-9) Documentation Bug

Posted by "Jean T. Anderson (JIRA)" <de...@db.apache.org>.
     [ http://issues.apache.org/jira/browse/DERBY-9?page=all ]

Jean T. Anderson updated DERBY-9:
---------------------------------

    Description: 
reference.pdf: page 178

Tests whether the first operand is between the second and third operands. The second operand must be less than the third operand. Applicable only to types to which <= and >= can be applied. WHERE booking_date BETWEEN DATE'1998-02-26' AND DATE'1998-03-01'

Syntax does not work. DATE'1998-02-26' i think is wrong.

WHERE booking_date BETWEEN '1998-02-26' AND '1998-03-01'

seems to work.



  was:
reference.pdf: page 178

Tests whether the first operand is between the second and third operands. The second operand must be less than the third operand. Applicable only to types to which <= and >= can be applied. WHERE booking_date BETWEEN DATE'1998-02-26' AND DATE'1998-03-01'

Syntax does not work. DATE'1998-02-26' i think is wrong.

WHERE booking_date BETWEEN '1998-02-26' AND '1998-03-01'

seems to work.



        Version: 10.0.2.1
                     (was: 10.0.2.0)

Set fixin version.

> Documentation Bug
> -----------------
>
>          Key: DERBY-9
>          URL: http://issues.apache.org/jira/browse/DERBY-9
>      Project: Derby
>         Type: Bug
>   Components: Documentation
>     Versions: 10.0.2.1
>  Environment: Windows 2K
>     Reporter: Ali Demir
>     Assignee: Jean T. Anderson
>     Priority: Minor

>
> reference.pdf: page 178
> Tests whether the first operand is between the second and third operands. The second operand must be less than the third operand. Applicable only to types to which <= and >= can be applied. WHERE booking_date BETWEEN DATE'1998-02-26' AND DATE'1998-03-01'
> Syntax does not work. DATE'1998-02-26' i think is wrong.
> WHERE booking_date BETWEEN '1998-02-26' AND '1998-03-01'
> seems to work.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (DERBY-9) Documentation Bug

Posted by "Jean T. Anderson (JIRA)" <de...@db.apache.org>.
     [ http://nagoya.apache.org/jira/browse/DERBY-9?page=comments#action_55220 ]
     
Jean T. Anderson commented on DERBY-9:
--------------------------------------

The date expressions are missing parentheses.  Instead of DATE'1998-02-06', it should be DATE('1998-02-06'). Files with errors are:

src/documentation/content/xdocs/manuals/reference/sqlj148.ihtml,sqlj232.ihtml,sqlj43.ihtml

> Documentation Bug
> -----------------
>
>          Key: DERBY-9
>          URL: http://nagoya.apache.org/jira/browse/DERBY-9
>      Project: Derby
>         Type: Bug
>   Components: Documentation
>     Versions: 10.0.2.0
>  Environment: Windows 2K
>     Reporter: Ali Demir
>     Assignee: Jean T. Anderson
>     Priority: Minor

>
> reference.pdf: page 178
> Tests whether the first operand is between the second and third operands. The second operand must be less than the third operand. Applicable only to types to which <= and >= can be applied. WHERE booking_date BETWEEN DATE'1998-02-26' AND DATE'1998-03-01'
> Syntax does not work. DATE'1998-02-26' i think is wrong.
> WHERE booking_date BETWEEN '1998-02-26' AND '1998-03-01'
> seems to work.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://nagoya.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Closed: (DERBY-9) Documentation Bug

Posted by "Jean T. Anderson (JIRA)" <de...@db.apache.org>.
     [ http://issues.apache.org/jira/browse/DERBY-9?page=all ]
     
Jean T. Anderson closed DERBY-9:
--------------------------------


Issue does not affect DITA docs, was fixed before the new files were contributed.

> Documentation Bug
> -----------------
>
>          Key: DERBY-9
>          URL: http://issues.apache.org/jira/browse/DERBY-9
>      Project: Derby
>         Type: Bug
>   Components: Documentation
>     Versions: 10.0.2.0
>  Environment: Windows 2K
>     Reporter: Ali Demir
>     Assignee: Jean T. Anderson
>     Priority: Minor
>      Fix For: 10.0.2.1

>
> reference.pdf: page 178
> Tests whether the first operand is between the second and third operands. The second operand must be less than the third operand. Applicable only to types to which <= and >= can be applied. WHERE booking_date BETWEEN DATE'1998-02-26' AND DATE'1998-03-01'
> Syntax does not work. DATE'1998-02-26' i think is wrong.
> WHERE booking_date BETWEEN '1998-02-26' AND '1998-03-01'
> seems to work.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Resolved: (DERBY-9) Documentation Bug

Posted by "Jean T. Anderson (JIRA)" <de...@db.apache.org>.
     [ http://nagoya.apache.org/jira/browse/DERBY-9?page=history ]
     
Jean T. Anderson resolved DERBY-9:
----------------------------------

    Resolution: Fixed

Fixed in svn revision 56996:
incubator/derby/site/trunk/build/site/manuals/reference/sqlj148.html
incubator/derby/site/trunk/build/site/manuals/reference/sqlj232.html incubator/derby/site/trunk/build/site/manuals/reference/sqlj43.html
incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/reference/sqlj148.ihtml   incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/reference/sqlj232.ihtml incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/reference/sqlj43.ihtml

> Documentation Bug
> -----------------
>
>          Key: DERBY-9
>          URL: http://nagoya.apache.org/jira/browse/DERBY-9
>      Project: Derby
>         Type: Bug
>   Components: Documentation
>     Versions: 10.0.2.0
>  Environment: Windows 2K
>     Reporter: Ali Demir
>     Assignee: Jean T. Anderson
>     Priority: Minor

>
> reference.pdf: page 178
> Tests whether the first operand is between the second and third operands. The second operand must be less than the third operand. Applicable only to types to which <= and >= can be applied. WHERE booking_date BETWEEN DATE'1998-02-26' AND DATE'1998-03-01'
> Syntax does not work. DATE'1998-02-26' i think is wrong.
> WHERE booking_date BETWEEN '1998-02-26' AND '1998-03-01'
> seems to work.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://nagoya.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Assigned: (DERBY-9) Documentation Bug

Posted by "Jean T. Anderson (JIRA)" <de...@db.apache.org>.
     [ http://issues.apache.org/jira/browse/DERBY-9?page=history ]

Jean T. Anderson reassigned DERBY-9:
------------------------------------

    Assign To: Jean T. Anderson

> Documentation Bug
> -----------------
>
>          Key: DERBY-9
>          URL: http://issues.apache.org/jira/browse/DERBY-9
>      Project: Derby
>         Type: Bug
>   Components: Documentation
>     Versions: 10.0.2.0
>  Environment: Windows 2K
>     Reporter: Ali Demir
>     Assignee: Jean T. Anderson
>     Priority: Minor

>
> reference.pdf: page 178
> Tests whether the first operand is between the second and third operands. The second operand must be less than the third operand. Applicable only to types to which <= and >= can be applied. WHERE booking_date BETWEEN DATE'1998-02-26' AND DATE'1998-03-01'
> Syntax does not work. DATE'1998-02-26' i think is wrong.
> WHERE booking_date BETWEEN '1998-02-26' AND '1998-03-01'
> seems to work.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira