* Parses a connectionStatus spec, executes the connectionStatus command, and returns the result. */
| 145 | * Parses a connectionStatus spec, executes the connectionStatus command, and returns the result. |
| 146 | */ |
| 147 | Datum |
| 148 | command_connection_status(PG_FUNCTION_ARGS) |
| 149 | { |
| 150 | pgbson *connectionStatusSpec = PG_GETARG_PGBSON(0); |
| 151 | |
| 152 | Datum response = connection_status(connectionStatusSpec); |
| 153 | |
| 154 | PG_RETURN_DATUM(response); |
| 155 | } |
| 156 | |
| 157 | |
| 158 | /* |
nothing calls this directly
no test coverage detected