Commit b59e20db authored by Marc G. Fournier's avatar Marc G. Fournier

From: plh@opim.uconn.edu

Missing = in an update
parent dde2b66f
......@@ -423,7 +423,7 @@ check_foreign_key()
sprintf(sql, "update %s set ", relname);
for (i = 1; i <= nkeys; i++)
{
sprintf(sql + strlen(sql), "%s null%s",
sprintf(sql + strlen(sql), "%s = null%s",
args2[i], (i < nkeys) ? ", " : "");
}
strcat(sql, " where ");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment