summaryrefslogtreecommitdiff
path: root/storage/rocksdb/rdb_sst_info.cc
diff options
context:
space:
mode:
Diffstat (limited to 'storage/rocksdb/rdb_sst_info.cc')
-rw-r--r--storage/rocksdb/rdb_sst_info.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/storage/rocksdb/rdb_sst_info.cc b/storage/rocksdb/rdb_sst_info.cc
index 8ca00bb30f5..72abfab5d6b 100644
--- a/storage/rocksdb/rdb_sst_info.cc
+++ b/storage/rocksdb/rdb_sst_info.cc
@@ -104,9 +104,11 @@ Rdb_sst_file_ordered::Rdb_sst_file::put(const rocksdb::Slice &key,
const rocksdb::Slice &value) {
DBUG_ASSERT(m_sst_file_writer != nullptr);
+#ifdef __GNUC__
// Add the specified key/value to the sst file writer
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
+#endif
return m_sst_file_writer->Add(key, value);
}