We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56033d1 commit a3af3d6Copy full SHA for a3af3d6
scylla/src/client/pager.rs
@@ -695,6 +695,12 @@ impl QueryPager {
695
/// This is automatically called upon transforming [QueryPager] into [TypedRowStream].
696
// Can be used with `next()` for manual deserialization.
697
#[inline]
698
+ #[deprecated(
699
+ since = "1.4.0",
700
+ note = "Type check should be performed for each page, which is not possible with public API.
701
+Also, the only thing user can do (rows_stream) will take care of type check anyway.
702
+If you are using this API, you are probably doing something wrong."
703
+ )]
704
pub fn type_check<'frame, 'metadata, RowT: DeserializeRow<'frame, 'metadata>>(
705
&self,
706
) -> Result<(), TypeCheckError> {
0 commit comments