Skip to content

Commit

Permalink
resolution for java build problem introduced by 5ec53f3
Browse files Browse the repository at this point in the history
  • Loading branch information
fyrz committed Oct 2, 2014
1 parent 187b299 commit b3343fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion java/rocksjni/write_batch.cc
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,8 @@ jbyteArray Java_org_rocksdb_WriteBatchTest_getContents(
options.memtable_factory = factory;
rocksdb::MemTable* mem = new rocksdb::MemTable(
cmp, rocksdb::ImmutableCFOptions(options),
rocksdb::MemTableOptions(rocksdb::MutableCFOptions(options), options));
rocksdb::MemTableOptions(rocksdb::MutableCFOptions(options,
rocksdb::ImmutableCFOptions(options)), options));
mem->Ref();
std::string state;
rocksdb::ColumnFamilyMemTablesDefault cf_mems_default(mem, &options);
Expand Down

0 comments on commit b3343fd

Please sign in to comment.