pgrx::pg_module_magic!(); pub mod removed_functions; pgrx::extension_sql_file!("./sql_src.sql", name = "bootstrap"); #[cfg(test)] pub mod pg_test { // pg_test module with both the setup and postgresql_conf_options functions are required use std::vec; pub fn setup(_options: Vec<&str>) {} pub fn postgresql_conf_options() -> Vec<&'static str> { // return any postgresql.conf settings that are required for your tests // uncomment this when there are tests for the partman background worker // vec!["shared_preload_libraries = 'pg_partman_bgw'"] vec![] } }