suyanhanx commented on code in PR #2036:
URL:
https://github.com/apache/incubator-opendal/pull/2036#discussion_r1171092357
##########
core/src/raw/adapters/kv/backend.rs:
##########
@@ -264,35 +278,17 @@ impl<S> KvWriter<S> {
buf: None,
}
}
-
- fn extend_buf(&mut self, bs: Bytes) {
- if let Some(buf) = self.buf.as_mut() {
- buf.extend(bs);
- } else {
- self.buf = Some(bs.into())
- }
- }
}
#[async_trait]
impl<S: Adapter> oio::Write for KvWriter<S> {
+ // TODO: we need to support append in the future.
Review Comment:
This needs to happen soon. 😄
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]