| 184 | } |
| 185 | |
| 186 | int get_default_sql_pool_max_threads(void) |
| 187 | { |
| 188 | struct thdpool *pool = get_default_sql_pool(0); |
| 189 | return (pool != NULL) ? thdpool_get_maxthds(pool) : SQL_POOL_DEFLT_MAX_THREADS; |
| 190 | } |
| 191 | |
| 192 | struct thdpool *get_default_sql_pool(int bCreate) |
| 193 | { |
no test coverage detected