/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/include/access/sequence.h
23 строки
694 B
Bruce Momjian
Update copyright for 2026
01 янв 2026, 21:24
01 янв 2026, 21:24
451c439
Код
Авторство
О чём код?
/*------------------------------------------------------------------------- * * sequence.h * Generic routines for sequence-related code. * * * Portions Copyright (c) 1996-2026, 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 */