You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-16
Original file line number
Diff line number
Diff line change
@@ -160,10 +160,7 @@ The driver inherits almost all the features of C/C++ and Rust drivers, such as:
160
160
</tr>
161
161
<tr>
162
162
<td>cass_statement_bind_custom[by_name]</td>
163
-
<td rowspan="2">Binding is not implemented for custom types in the Rust driver. <br> Binding Decimal type requires encoding raw bytes into BigDecimal type in the Rust driver. <br> <b>Note</b>: The driver does not validate the types of the values passed to queries.</td>
164
-
</tr>
165
-
<tr>
166
-
<td>cass_statement_bind_decimal[by_name]</td>
163
+
<td>Binding is not implemented for custom types in the Rust driver.</td>
@@ -187,28 +184,18 @@ The driver inherits almost all the features of C/C++ and Rust drivers, such as:
187
184
</tr>
188
185
<tr>
189
186
<td>cass_collection_append_custom[_n]</td>
190
-
<td rowspan="2">Unimplemented because of the same reasons as binding for statements.<br> <b>Note</b>: The driver does not check whether the type of the appended value is compatible with the type of the collection items.</td>
191
-
</tr>
192
-
<tr>
193
-
<td>cass_collection_append_decimal</td>
187
+
<td>Unimplemented because of the same reasons as binding for statements.<br> <b>Note</b>: The driver does not check whether the type of the appended value is compatible with the type of the collection items.</td>
194
188
</tr>
195
189
<tr>
196
190
<td colspan=2 align="center" style="font-weight:bold">User Defined Type</td>
197
191
</tr>
198
192
<tr>
199
193
<td>cass_user_type_set_custom[by_name]</td>
200
-
<td rowspan="2">Unimplemented because of the same reasons as binding for statements.<br> <b>Note</b>: The driver does not check whether the type of the value being set for a field of the UDT is compatible with the field's actual type.</td>
201
-
</tr>
202
-
<tr>
203
-
<td>cass_user_type_set_decimal[by_name]</td>
194
+
<td>Unimplemented because of the same reasons as binding for statements.<br> <b>Note</b>: The driver does not check whether the type of the value being set for a field of the UDT is compatible with the field's actual type.</td>
<td>Getting raw bytes of Decimal values requires lazy deserialization feature in the Rust driver.</td>
211
-
</tr>
212
199
<tr>
213
200
<td>cass_value_get_bytes</td>
214
201
<td>When the above requirement is satisfied, this should be implemented for all CQL types. Currently, it returns only bytes of a Blob object, otherwise returns CASS_ERROR_LIB_INVALID_VALUE_TYPE.</td>
0 commit comments