@@ -474,7 +474,7 @@ AlterSequence(ParseState *pstate, AlterSeqStmt *stmt)
474
474
475
475
seqform = (Form_pg_sequence ) GETSTRUCT (seqtuple );
476
476
477
- /* lock page's buffer and read tuple into new sequence structure */
477
+ /* lock page buffer and read tuple into new sequence structure */
478
478
(void ) read_seq_tuple (seqrel , & buf , & datatuple );
479
479
480
480
/* copy the existing sequence data tuple, so it can be modified locally */
@@ -678,7 +678,7 @@ nextval_internal(Oid relid, bool check_permissions)
678
678
cycle = pgsform -> seqcycle ;
679
679
ReleaseSysCache (pgstuple );
680
680
681
- /* lock page' buffer and read tuple */
681
+ /* lock page buffer and read tuple */
682
682
seq = read_seq_tuple (seqrel , & buf , & seqdatatuple );
683
683
page = BufferGetPage (buf );
684
684
@@ -974,7 +974,7 @@ do_setval(Oid relid, int64 next, bool iscalled)
974
974
*/
975
975
PreventCommandIfParallelMode ("setval()" );
976
976
977
- /* lock page' buffer and read tuple */
977
+ /* lock page buffer and read tuple */
978
978
seq = read_seq_tuple (seqrel , & buf , & seqdatatuple );
979
979
980
980
if ((next < minv ) || (next > maxv ))
0 commit comments