Skip to content

Commit cd1127b

Browse files
author
Michael Karsten
committed
fix docstrings
1 parent 7ddedc9 commit cd1127b

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

query-builder/src/main/java/com/datastax/oss/driver/api/querybuilder/schema/RelationOptions.java

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,6 @@ default SelfT withCDC(boolean enabled) {
6363
*
6464
* <p>Note that using this option with a version of Apache Cassandra less than 3.0 will raise a
6565
* syntax error.
66-
*
67-
* <p>If no call is made to this method, the default value set is 0.99.
6866
*/
6967
@NonNull
7068
@CheckReturnValue
@@ -169,7 +167,9 @@ default SelfT withZstdCompression() {
169167

170168
/**
171169
* @deprecated This method only exists for backward compatibility. Will not work with Apache
172-
* Cassandra 5.0 or later. Use {@link #withSnappyCompression(int)} instead.
170+
* Cassandra 5.0 or later due to removal of deprecated table properties (<a
171+
* href="https://issues.apache.org/jira/browse/CASSANDRA-18742">CASSANDRA-18742</a>). Use
172+
* {@link #withSnappyCompression(int)} instead.
173173
*/
174174
@Deprecated
175175
@NonNull
@@ -203,7 +203,9 @@ default SelfT withSnappyCompression() {
203203

204204
/**
205205
* @deprecated This method only exists for backward compatibility. Will not work with Apache
206-
* Cassandra 5.0 or later. Use {@link #withDeflateCompression(int)} instead.
206+
* Cassandra 5.0 or later due to removal of deprecated table properties (<a
207+
* href="https://issues.apache.org/jira/browse/CASSANDRA-18742">CASSANDRA-18742</a>). Use
208+
* {@link #withDeflateCompression(int)} instead.
207209
*/
208210
@Deprecated
209211
@NonNull
@@ -271,7 +273,9 @@ default SelfT withCompression(@NonNull String compressionAlgorithmName, int chun
271273

272274
/**
273275
* @deprecated This method only exists for backward compatibility. Will not work with Apache
274-
* Cassandra 5.0 or later. Use {@link #withCompression(String, int)} instead.
276+
* Cassandra 5.0 or later due to removal of deprecated table properties (<a
277+
* href="https://issues.apache.org/jira/browse/CASSANDRA-18742">CASSANDRA-18742</a>). Use
278+
* {@link #withCompression(String, int)} instead.
275279
*/
276280
@NonNull
277281
@CheckReturnValue

0 commit comments

Comments
 (0)