(&self, flags: &[&'static str])
| 966 | } |
| 967 | |
| 968 | pub async fn disable_feature_flags(&self, flags: &[&'static str]) { |
| 969 | let internal_client = self.connect().internal().await.unwrap(); |
| 970 | |
| 971 | for flag in flags { |
| 972 | let query = sql!("ALTER SYSTEM SET {} = false;", Sql::ident(flag)); |
| 973 | pg_batch_execute(&internal_client, query).await.unwrap(); |
| 974 | } |
| 975 | } |
| 976 | |
| 977 | pub fn ws_addr(&self) -> Uri { |
| 978 | format!( |
no test coverage detected