1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-24 01:29:19 +03:00
Files
postgres/src/include/access/sequence.h
Bruce Momjian 50e6eb731d Update copyright for 2025
Backpatch-through: 13
2025-01-01 11:21:55 -05:00

24 lines
694 B
C

/*-------------------------------------------------------------------------
*
* sequence.h
* Generic routines for sequence-related code.
*
*
* Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/include/access/sequence.h
*
*-------------------------------------------------------------------------
*/
#ifndef ACCESS_SEQUENCE_H
#define ACCESS_SEQUENCE_H
#include "storage/lockdefs.h"
#include "utils/relcache.h"
extern Relation sequence_open(Oid relationId, LOCKMODE lockmode);
extern void sequence_close(Relation relation, LOCKMODE lockmode);
#endif /* ACCESS_SEQUENCE_H */