Skip to content

Commit

Permalink
Rename helper file now with only multiget code
Browse files Browse the repository at this point in the history
Single key get() now solely uses kv_helper.h methods
  • Loading branch information
alanpaxton committed Jan 15, 2024
1 parent c74c3c1 commit 5ecbe57
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion java/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ set(JNI_NATIVE_SOURCES
rocksjni/hyper_clock_cache.cc
rocksjni/ingest_external_file_options.cc
rocksjni/iterator.cc
rocksjni/jni_get_helpers.cc
rocksjni/jni_multiget_helpers.cc
rocksjni/jnicallback.cc
rocksjni/loggerjnicallback.cc
rocksjni/lru_cache.cc
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. See the AUTHORS file for names of contributors.

#include "rocksjni/jni_get_helpers.h"
#include "rocksjni/jni_multiget_helpers.h"

#include "jni_get_helpers.h"
#include "jni_multiget_helpers.h"
#include "rocksjni/portal.h"

namespace ROCKSDB_NAMESPACE {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion java/rocksjni/rocksjni.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include "rocksdb/types.h"
#include "rocksdb/version.h"
#include "rocksjni/cplusplus_to_java_convert.h"
#include "rocksjni/jni_get_helpers.h"
#include "rocksjni/jni_multiget_helpers.h"
#include "rocksjni/kv_helper.h"
#include "rocksjni/portal.h"

Expand Down
2 changes: 1 addition & 1 deletion java/rocksjni/transaction.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

#include "include/org_rocksdb_Transaction.h"
#include "rocksjni/cplusplus_to_java_convert.h"
#include "rocksjni/jni_get_helpers.h"
#include "rocksjni/jni_multiget_helpers.h"
#include "rocksjni/kv_helper.h"
#include "rocksjni/portal.h"

Expand Down
2 changes: 1 addition & 1 deletion src.mk
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,7 @@ JNI_NATIVE_SOURCES = \
java/rocksjni/hyper_clock_cache.cc \
java/rocksjni/iterator.cc \
java/rocksjni/jni_perf_context.cc \
java/rocksjni/jni_get_helpers.cc \
java/rocksjni/jni_multiget_helpers.cc \
java/rocksjni/jnicallback.cc \
java/rocksjni/loggerjnicallback.cc \
java/rocksjni/lru_cache.cc \
Expand Down

0 comments on commit 5ecbe57

Please sign in to comment.