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:
@ -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.
|
||||||
|
Reference in New Issue
Block a user