Location via proxy:
[ UP ]
[Report a bug]
[Manage cookies]
No cookies
No scripts
No ads
No referrer
Show this form
projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d90ced8
)
Fix silly thinko in ResetSequenceCaches.
author
Robert Haas
<rhaas@postgresql.org>
Fri, 4 Oct 2013 00:17:51 +0000
(20:17 -0400)
committer
Robert Haas
<rhaas@postgresql.org>
Fri, 4 Oct 2013 00:17:51 +0000
(20:17 -0400)
Report from Kevin Hale Boyes.
src/backend/commands/sequence.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/commands/sequence.c
b/src/backend/commands/sequence.c
index 3ec6b7654aa5c6b74174e3e9d05431a1fc20bdb6..eba7cad6ec36138f9982c6cc62212d6b4008d12d 100644
(file)
--- a/
src/backend/commands/sequence.c
+++ b/
src/backend/commands/sequence.c
@@
-1615,6
+1615,6
@@
ResetSequenceCaches(void)
{
next = seqtab->next;
free(seqtab);
- seqtab =
seqtab->
next;
+ seqtab = next;
}
}