koushiro commented on code in PR #7081:
URL: https://github.com/apache/opendal/pull/7081#discussion_r2637951984
##########
core/services/rocksdb/src/deleter.rs:
##########
@@ -15,13 +15,10 @@
// specific language governing permissions and limitations
// under the License.
+use crate::core::RocksdbCore;
+use opendal_core::raw::{self, build_abs_path, oio};
Review Comment:
```suggestion
use opendal_core::raw::*;
```
##########
core/services/rocksdb/src/deleter.rs:
##########
@@ -34,7 +31,7 @@ impl RocksdbDeleter {
}
impl oio::OneShotDelete for RocksdbDeleter {
- async fn delete_once(&self, path: String, _: OpDelete) -> Result<()> {
+ async fn delete_once(&self, path: String, _: raw::OpDelete) ->
opendal_core::Result<()> {
Review Comment:
```suggestion
async fn delete_once(&self, path: String, _: OpDelete) ->Result<()> {
```
--
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]