aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/sequence.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2017-08-14 13:53:05 -0400
committerPeter Eisentraut <peter_e@gmx.net>2017-08-14 13:53:05 -0400
commit7f1bb1d7346b67a62e8ec59f79f8284cb7fb4394 (patch)
tree2c713673fb706ff0beb0c956a9bab36b4c7c4952 /src/backend/commands/sequence.c
parent79e5de690efce6e7aaa9c60e10389a8bc58c1617 (diff)
downloadpostgresql-7f1bb1d7346b67a62e8ec59f79f8284cb7fb4394.tar.gz
postgresql-7f1bb1d7346b67a62e8ec59f79f8284cb7fb4394.zip
Fix typo
Author: Masahiko Sawada <sawada.mshk@gmail.com>
Diffstat (limited to 'src/backend/commands/sequence.c')
-rw-r--r--src/backend/commands/sequence.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/sequence.c b/src/backend/commands/sequence.c
index bb611086ed4..62937124efe 100644
--- a/src/backend/commands/sequence.c
+++ b/src/backend/commands/sequence.c
@@ -458,7 +458,7 @@ AlterSequence(ParseState *pstate, AlterSeqStmt *stmt)
/* lock page's buffer and read tuple into new sequence structure */
(void) read_seq_tuple(seqrel, &buf, &datatuple);
- /* copy the existing sequence data tuple, so it can be modified localy */
+ /* copy the existing sequence data tuple, so it can be modified locally */
newdatatuple = heap_copytuple(&datatuple);
newdataform = (Form_pg_sequence_data) GETSTRUCT(newdatatuple);