* Implements dropRole command. */
| 159 | * Implements dropRole command. |
| 160 | */ |
| 161 | Datum |
| 162 | command_drop_role(PG_FUNCTION_ARGS) |
| 163 | { |
| 164 | pgbson *dropRoleSpec = PG_GETARG_PGBSON(0); |
| 165 | |
| 166 | Datum response = drop_role(dropRoleSpec); |
| 167 | |
| 168 | PG_RETURN_DATUM(response); |
| 169 | } |
| 170 | |
| 171 | |
| 172 | /* |
nothing calls this directly
no test coverage detected