* Implements rolesInfo command, which will be implemented in the future. */
| 173 | * Implements rolesInfo command, which will be implemented in the future. |
| 174 | */ |
| 175 | Datum |
| 176 | command_roles_info(PG_FUNCTION_ARGS) |
| 177 | { |
| 178 | pgbson *rolesInfoSpec = PG_GETARG_PGBSON(0); |
| 179 | |
| 180 | Datum response = roles_info(rolesInfoSpec); |
| 181 | |
| 182 | PG_RETURN_DATUM(response); |
| 183 | } |
| 184 | |
| 185 | |
| 186 | /* |
nothing calls this directly
no test coverage detected