1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

MariaRocks port: update ha_rocksdb::delete_all_rows() to match the definition in class handler

This commit is contained in:
Sergei Petrunia
2016-10-21 21:27:23 +00:00
parent e22b271b39
commit fd4e83eb32
2 changed files with 2 additions and 2 deletions

View File

@@ -8253,7 +8253,7 @@ int ha_rocksdb::index_end()
}
int ha_rocksdb::delete_all_rows(ha_rows* nrows)
int ha_rocksdb::delete_all_rows()
{
DBUG_ENTER("ha_rocksdb::delete_all_rows");
/*

View File

@@ -911,7 +911,7 @@ public:
__attribute__((__warn_unused_result__));
int external_lock(THD *thd, int lock_type)
__attribute__((__warn_unused_result__));
int delete_all_rows(ha_rows* nrows) __attribute__((__warn_unused_result__));
int delete_all_rows() __attribute__((__warn_unused_result__));
int truncate() __attribute__((__warn_unused_result__));
int reset() override