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 "Dag H. Wanvik (JIRA)" <ji...@apache.org> on 2012/07/05 20:00:47 UTC

[jira] [Updated] (DERBY-5849) Text for SQL state XSDG0: remove redundant "page"

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

Dag H. Wanvik updated DERBY-5849:
---------------------------------

    Description: 
In the message text (English locale), we see this error being printed for error state XSDG0:

Page Page(1,Container(0, 14929)) could not be read from disk. 

The text in messages.xml is:

<text>Page {0} could not be read from disk.</text>

The problem is that the argument used is a PageKey, which has a toString method thats prints:

Page(" + pageNumber + "," + container.toString() + ")";

so, we get two "page" string and it looks silly. 

  was:
In the message text (English locale), we see this error being printed

Page Page(1,Container(0, 14929)) could not be read from disk. 

The text in messages.xml is:

<text>Page {0} could not be read from disk.</text>

The problem is that the argument used is a PageKey, which has a toString method thats prints:

Page(" + pageNumber + "," + container.toString() + ")";

so, we get two "page" string and it looks silly. 

    
> Text for SQL state XSDG0: remove redundant "page"
> -------------------------------------------------
>
>                 Key: DERBY-5849
>                 URL: https://issues.apache.org/jira/browse/DERBY-5849
>             Project: Derby
>          Issue Type: Improvement
>          Components: Services, Store
>            Reporter: Dag H. Wanvik
>
> In the message text (English locale), we see this error being printed for error state XSDG0:
> Page Page(1,Container(0, 14929)) could not be read from disk. 
> The text in messages.xml is:
> <text>Page {0} could not be read from disk.</text>
> The problem is that the argument used is a PageKey, which has a toString method thats prints:
> Page(" + pageNumber + "," + container.toString() + ")";
> so, we get two "page" string and it looks silly. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira