mirror of
https://github.com/postgres/postgres.git
synced 2025-07-20 05:03:10 +03:00
Remove dead assignment
per scan-build
This commit is contained in:
@ -489,7 +489,6 @@ check_foreign_key(PG_FUNCTION_ARGS)
|
|||||||
" %s = %s%s%s %s ",
|
" %s = %s%s%s %s ",
|
||||||
args2[k], (is_char_type > 0) ? "'" : "",
|
args2[k], (is_char_type > 0) ? "'" : "",
|
||||||
nv, (is_char_type > 0) ? "'" : "", (k < nkeys) ? ", " : "");
|
nv, (is_char_type > 0) ? "'" : "", (k < nkeys) ? ", " : "");
|
||||||
is_char_type = 0;
|
|
||||||
}
|
}
|
||||||
strcat(sql, " where ");
|
strcat(sql, " where ");
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user