1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-03 20:02:46 +03:00

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.
*/
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.