/
balmaster
/
postgres
Обзор
Документация
Войти
/
balmaster
/
postgres
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/include/archive/shell_archive.h
24 строки
698 B
Bruce Momjian
Update copyright for 2026
01 янв 2026, 21:24
01 янв 2026, 21:24
451c439
Код
Авторство
О чём код?
/*------------------------------------------------------------------------- * * shell_archive.h * Exports for archiving via shell. * * Copyright (c) 2022-2026, PostgreSQL Global Development Group * * src/include/archive/shell_archive.h * *------------------------------------------------------------------------- */ #ifndef _SHELL_ARCHIVE_H #define _SHELL_ARCHIVE_H #include "archive/archive_module.h" /* * Since the logic for archiving via a shell command is in the core server * and does not need to be loaded via a shared library, it has a special * initialization function. */ extern const ArchiveModuleCallbacks *shell_archive_init(void); #endif /* _SHELL_ARCHIVE_H */