Missing = in an update
This commit is contained in:
Marc G. Fournier 1998-02-14 18:04:39 +00:00
parent dde2b66f44
commit b59e20db1a
1 changed files with 1 additions and 1 deletions

View File

@ -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 ");