mirror of
https://github.com/facebook/rocksdb.git
synced 2024-11-25 14:31:35 +00:00
d6d8c007ff
Summary: As the first step of covering the wide-column functionality of iterators in our stress tests, the patch adds verification logic to `NonBatchedOpsStressTest::VerifyDb` that checks whether the iterator's value and columns are in sync. Note: I plan to update the other types of stress tests and add similar verification for prefix scans etc. in separate PRs. Pull Request resolved: https://github.com/facebook/rocksdb/pull/10783 Test Plan: Ran some simple blackbox crash tests. Reviewed By: riversand963 Differential Revision: D40152370 Pulled By: riversand963 fbshipit-source-id: 8f9d17d7af5da58ccf1bd2057cab53cc9645ac35
23 lines
629 B
C++
23 lines
629 B
C++
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
// (found in the LICENSE.Apache file in the root directory).
|
|
|
|
#include "rocksdb/wide_columns.h"
|
|
|
|
#include "db/wide/wide_column_serialization.h"
|
|
|
|
namespace ROCKSDB_NAMESPACE {
|
|
|
|
const Slice kDefaultWideColumnName;
|
|
|
|
const WideColumns kNoWideColumns;
|
|
|
|
Status PinnableWideColumns::CreateIndexForWideColumns() {
|
|
Slice value_copy = value_;
|
|
|
|
return WideColumnSerialization::Deserialize(value_copy, columns_);
|
|
}
|
|
|
|
} // namespace ROCKSDB_NAMESPACE
|