summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2018-01-30 01:41:36 +0000
committerPeter Eisentraut2018-01-30 01:41:36 +0000
commit6ad3611e1ea6fef6ac0c746d1565b3f6a856b593 (patch)
treee8456c2344c7ad4e568363e6d613dacaf51a8b45
parentc12693d8f3bbbffcb79f6af476cc647402e1145e (diff)
Remove dead assignment
per scan-build
-rw-r--r--contrib/spi/refint.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/contrib/spi/refint.c b/contrib/spi/refint.c
index 2fc894e72a1..b065ffa400d 100644
--- a/contrib/spi/refint.c
+++ b/contrib/spi/refint.c
@@ -489,7 +489,6 @@ check_foreign_key(PG_FUNCTION_ARGS)
" %s = %s%s%s %s ",
args2[k], (is_char_type > 0) ? "'" : "",
nv, (is_char_type > 0) ? "'" : "", (k < nkeys) ? ", " : "");
- is_char_type = 0;
}
strcat(sql, " where ");