Get the rollback endpoint path for a table.
(&self, database_name: &str, table_name: &str)
| 147 | |
| 148 | /// Get the rollback endpoint path for a table. |
| 149 | pub fn rollback(&self, database_name: &str, table_name: &str) -> String { |
| 150 | format!( |
| 151 | "{}/{}/{}/{}/{}/rollback", |
| 152 | self.base_path, |
| 153 | Self::DATABASES, |
| 154 | RESTUtil::encode_string(database_name), |
| 155 | Self::TABLES, |
| 156 | RESTUtil::encode_string(table_name) |
| 157 | ) |
| 158 | } |
| 159 | |
| 160 | /// Get the partitions endpoint path for a table. |
| 161 | pub fn partitions(&self, database_name: &str, table_name: &str) -> String { |
no outgoing calls
no test coverage detected