You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by re...@apache.org on 2019/02/26 14:13:15 UTC

svn commit: r1854385 - /jackrabbit/oak/trunk/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/rdb/RDBDocumentStore.java

Author: reschke
Date: Tue Feb 26 14:13:15 2019
New Revision: 1854385

URL: http://svn.apache.org/viewvc?rev=1854385&view=rev
Log:
OAK-8080: RDB*Store: move DB-specific config hints from Javadoc into oak-doc - remove DB2 and MySQL specific hints that we moved to oak-doc

Modified:
    jackrabbit/oak/trunk/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/rdb/RDBDocumentStore.java

Modified: jackrabbit/oak/trunk/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/rdb/RDBDocumentStore.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/rdb/RDBDocumentStore.java?rev=1854385&r1=1854384&r2=1854385&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/rdb/RDBDocumentStore.java (original)
+++ jackrabbit/oak/trunk/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/rdb/RDBDocumentStore.java Tue Feb 26 14:13:15 2019
@@ -221,18 +221,20 @@ import com.google.common.collect.Sets;
  * Databases need to be configured so that:
  * <ul>
  * <li>Text fields support all Unicode code points,</li>
- * <li>Collation of text fields happens by Unicode code point (in
- * DB2: "collate using identity", in PostgreSQL: "C"),</li>
- * <li>and BLOBs need to support at least 16 MB (for instance, see
- * MySQL database parameter "max_allowed_packet").</li>
+ * <li>Collation of text fields happens by Unicode code point (in PostgreSQL: "C"),</li>
+ * <li>and BLOBs need to support at least 16 MB.</li>
  * </ul>
+ * <p>
+ * See the
+ * <a href="https://jackrabbit.apache.org/oak/docs/nodestore/document/rdb-document-store.html#database-creation">RDBDocumentStore documentation</a>
+ * for more information.
  * <h3 id="apidocs.table-creation">Table Creation</h3>
  * <p>
  * The code tries to create the tables when they are not present. Likewise, it
  * tries to upgrade to a newer schema when needed.
  * <p>
  * Users/Administrators who prefer to stay in control over table generation can
- * create them "manually". The oak-run "<a href="https://jackrabbit.apache.org/oak/docs/nodestore/document/rdb-document-store.html#oak-run_rdbddldump"><code>rdbddldump</code></a>"
+ * create them "manually". The oak-run "<a href="https://jackrabbit.apache.org/oak/docs/nodestore/document/rdb-document-store.html#rdbddldump"><code>rdbddldump</code></a>"
  * command can be used to print out the DDL statements that would have been used for auto-creation
  * and/or automatic schema updates.
  *