Remove dead assignment

found by Coverity
This commit is contained in:
Peter Eisentraut 2012-03-26 21:03:10 +03:00
parent 7386089d23
commit dcb33b1c64

View File

@ -258,7 +258,7 @@ ResetSequence(Oid seq_relid)
* indeed a sequence. * indeed a sequence.
*/ */
init_sequence(seq_relid, &elm, &seq_rel); init_sequence(seq_relid, &elm, &seq_rel);
seq = read_info(elm, seq_rel, &buf); read_info(elm, seq_rel, &buf);
/* /*
* Copy the existing sequence tuple. * Copy the existing sequence tuple.