KZX6RVSGAYRMCPKHROF3L2CHELFYLEAAN4Z7HN4MW2AAEIJJGBCQC
const DEFAULT_ALLOCATIONS: i32 = 128;
pub static VECTOR_ALLOCATION_BLOCKS: GucSetting<i32> = GucSetting::new(DEFAULT_ALLOCATIONS);
pub fn init_setting() {
GucRegistry::define_int_guc(
"pgvector.allocation_blocks",
"The number of allocation blocks.",
"",
&VECTOR_ALLOCATION_BLOCKS,
0,
16184,
GucContext::Userset,
);
println!("SETTING VALUE {:?}", VECTOR_ALLOCATION_BLOCKS.get());
}