Skip to content
Snippets Groups Projects
Commit fbda0000 authored by Danny Auble's avatar Danny Auble
Browse files

fix for checking the system to make changes to the table

parent 31e7a7d4
No related branches found
No related tags found
No related merge requests found
......@@ -1017,9 +1017,11 @@ extern int create_cluster_tables(MYSQL *db_conn, char *cluster_name)
cluster_name, assoc_table);
/* See if the tables exist (if not new cluster, so no altering
has to take place.
has to take place.) table_name can't be used here since it
has the "'s in it which don't work in this query.
*/
query = xstrdup_printf("show tables like '%s';", table_name);
query = xstrdup_printf("show tables like '%s_%s';",
cluster_name, assoc_table);
debug4("(%s:%d) query\n%s", THIS_FILE, __LINE__, query);
if(!(result = mysql_db_query_ret(db_conn, query, 0))) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment