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 15:46:28 UTC

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

Author: reschke
Date: Tue Feb 26 15:46:27 2019
New Revision: 1854403

URL: http://svn.apache.org/viewvc?rev=1854403&view=rev
Log:
OAK-8080: RDB*Store: move DB-specific config hints from Javadoc into oak-doc - remove PostgreSQL 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=1854403&r1=1854402&r2=1854403&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 15:46:27 2019
@@ -221,7 +221,7 @@ 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 PostgreSQL: "C"),</li>
+ * <li>Collation of text fields happens by Unicode code point,</li>
  * <li>and BLOBs need to support at least 16 MB.</li>
  * </ul>
  * <p>