[ 
https://issues.apache.org/jira/browse/JCR-1725?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12626380#action_12626380
 ] 

Thomas Mueller commented on JCR-1725:
-------------------------------------

You are not the first to stumble across this problem:
see https://issues.apache.org/jira/browse/JCR-1366

We probably need to improve this, but let's discuss what
to do on the issue 1366. 

> DbDataStore init fails if tablePrefix specified
> -----------------------------------------------
>
>                 Key: JCR-1725
>                 URL: https://issues.apache.org/jira/browse/JCR-1725
>             Project: Jackrabbit
>          Issue Type: Bug
>    Affects Versions: core 1.4.5
>            Reporter: Stephane Landelle
>   Original Estimate: 168h
>  Remaining Estimate: 168h
>
> In DbDataStore, init method checks if the table exists and otherwise creates 
> it.
> However, the test only take the table name and not the optional table name 
> prefix.
> Please modify :
> ResultSet rs = meta.getTables(null, null, tableSQL, null);
> as :
> ResultSet rs = meta.getTables(null, null, tablePrefix + tableSQL, null);
> Sincerely,
> Stephane Landelle

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

Reply via email to