* parseInput: if appropriate, parse input data from backend * until input is exhausted or a stopping state is reached. * Note that this function will NOT attempt to read more data from the backend. */
| 1972 | * Note that this function will NOT attempt to read more data from the backend. |
| 1973 | */ |
| 1974 | static void |
| 1975 | parseInput(PGconn *conn) |
| 1976 | { |
| 1977 | pqParseInput3(conn); |
| 1978 | } |
| 1979 | |
| 1980 | /* |
| 1981 | * PQisBusy |
no test coverage detected