Skip to content

Commit

Permalink
Flink state
Browse files Browse the repository at this point in the history
Summary:
This is to address the issue reported in
    facebook#1988
The fix is simple. A typo.
Closes facebook#2267

Differential Revision: D5037149

Pulled By: siying

fbshipit-source-id: 1bb585c7a753ef77c81c4b92deafbed8e21fe8ff
  • Loading branch information
Min Wei authored and facebook-github-bot committed May 10, 2017
1 parent 35df23f commit 3a04a25
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions java/rocksjni/rocksjni.cc
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ jboolean key_may_exist_helper(JNIEnv* env, rocksdb::DB* db,
}

rocksdb::Slice key_slice(reinterpret_cast<char*>(key), jkey_len);

std::string value;
bool value_found = false;
bool keyMayExist;
Expand Down Expand Up @@ -727,7 +727,7 @@ inline void multi_get_helper_release_keys(JNIEnv* env,
* cf multi get
*
* @return byte[][] of values or nullptr if an exception occurs
*/
*/
jobjectArray multi_get_helper(JNIEnv* env, jobject jdb, rocksdb::DB* db,
const rocksdb::ReadOptions& rOpt, jobjectArray jkeys,
jintArray jkey_offs, jintArray jkey_lens,
Expand Down Expand Up @@ -1373,7 +1373,7 @@ bool rocksdb_merge_helper(JNIEnv* env, rocksdb::DB* db,
}
rocksdb::Slice key_slice(reinterpret_cast<char*>(key), jkey_len);

jbyte* value = new jbyte[jkey_len];
jbyte* value = new jbyte[jval_len];
env->GetByteArrayRegion(jval, jval_off, jval_len, value);
if(env->ExceptionCheck()) {
// exception thrown: ArrayIndexOutOfBoundsException
Expand Down Expand Up @@ -2199,4 +2199,3 @@ void Java_org_rocksdb_RocksDB_addFile__JJ_3Ljava_lang_String_2IZ(
rocksdb::RocksDBExceptionJni::ThrowNew(env, s);
}
}

0 comments on commit 3a04a25

Please sign in to comment.