Table existence check in DbDataStore.init() does not take into account the
table prefix
---------------------------------------------------------------------------------------
Key: JCR-1542
URL: https://issues.apache.org/jira/browse/JCR-1542
Project: Jackrabbit
Issue Type: Bug
Components: jackrabbit-core
Affects Versions: core 1.4.2
Reporter: Yoav Landman
The check in line 487 should be:
meta.getTables(null, null, (tablePrefix + tableSQL).toUpperCase(), null).next()
instead of:
ResultSet rs = meta.getTables(null, null, tableSQL, null);
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.