| 866 | } |
| 867 | |
| 868 | void |
| 869 | mysql_do(MYSQL *db, const char *query) |
| 870 | { |
| 871 | if (mysql_real_query(db, query, strlen(query)) != 0) { |
| 872 | fprintf(stderr, "mysql: e=[%s] q=[%s]\n", mysql_error(db), query); |
| 873 | fatal_abort("mysql_do"); |
| 874 | } |
| 875 | } |
| 876 | |
| 877 | void |
| 878 | hs_longrun_init_table(const config& conf, int num_prepare, |
no test coverage detected