| 209 | } |
| 210 | |
| 211 | struct thdpool *get_sql_pool(struct sqlclntstate *clnt) |
| 212 | { |
| 213 | if ((clnt != NULL) && (clnt->pPool != NULL)) return clnt->pPool; |
| 214 | return get_default_sql_pool(0); |
| 215 | } |
| 216 | |
| 217 | struct thdpool *get_named_sql_pool(const char *zName, int bCreate, int nThreads) |
| 218 | { |
no test coverage detected