File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -3763,6 +3763,11 @@ void rocksdb_block_based_options_set_unpartitioned_pinning_tier(
37633763 static_cast <ROCKSDB_NAMESPACE::PinningTier>(v);
37643764}
37653765
3766+ void rocksdb_block_based_options_set_block_align (
3767+ rocksdb_block_based_table_options_t * options, unsigned char v) {
3768+ options->rep .block_align = v;
3769+ }
3770+
37663771/* FlushJobInfo */
37673772
37683773const char * rocksdb_flushjobinfo_cf_name (const rocksdb_flushjobinfo_t * info,
Original file line number Diff line number Diff line change @@ -1231,6 +1231,8 @@ rocksdb_block_based_options_set_partition_pinning_tier(
12311231extern ROCKSDB_LIBRARY_API void
12321232rocksdb_block_based_options_set_unpartitioned_pinning_tier (
12331233 rocksdb_block_based_table_options_t * , int );
1234+ extern ROCKSDB_LIBRARY_API void rocksdb_block_based_options_set_block_align (
1235+ rocksdb_block_based_table_options_t * , unsigned char );
12341236extern ROCKSDB_LIBRARY_API void rocksdb_options_set_write_buffer_manager (
12351237 rocksdb_options_t * opt , rocksdb_write_buffer_manager_t * wbm );
12361238extern ROCKSDB_LIBRARY_API void rocksdb_options_set_sst_file_manager (
You can’t perform that action at this time.
0 commit comments